Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
ea37dd4a
Commit
ea37dd4a
authored
11 years ago
by
Xiaohong Bao
Browse files
Options
Downloads
Plain Diff
Automated merge with
http://bitbucket.org/lindenlab/viewer-interesting
parents
37626bb4
31bf481a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/newview/llvieweroctree.h
+1
-0
1 addition, 0 deletions
indra/newview/llvieweroctree.h
indra/newview/llvocache.cpp
+13
-2
13 additions, 2 deletions
indra/newview/llvocache.cpp
indra/newview/llvocache.h
+3
-4
3 additions, 4 deletions
indra/newview/llvocache.h
with
17 additions
and
6 deletions
indra/newview/llvieweroctree.h
+
1
−
0
View file @
ea37dd4a
...
...
@@ -327,6 +327,7 @@ class LLOcclusionCullingGroup : public LLviewerOctreeGroup
//virtual
BOOL
isRecentlyVisible
()
const
;
LLViewerOctreePartition
*
getSpatialPartition
()
const
{
return
mSpatialPartition
;}
static
U32
getNewOcclusionQueryObjectName
();
static
void
releaseOcclusionQueryObjectName
(
U32
name
);
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llvocache.cpp
+
13
−
2
View file @
ea37dd4a
...
...
@@ -261,6 +261,12 @@ void LLVOCacheEntry::addChild(LLVOCacheEntry* entry)
if
(
getEntry
()
!=
NULL
&&
isState
(
INACTIVE
))
{
updateParentBoundingInfo
(
entry
);
if
(
getGroup
())
{
LLOcclusionCullingGroup
*
group
=
(
LLOcclusionCullingGroup
*
)
getGroup
();
group
->
unbound
();
((
LLVOCachePartition
*
)
group
->
getSpatialPartition
())
->
setDirty
();
}
}
}
...
...
@@ -479,12 +485,17 @@ LLVOCachePartition::LLVOCachePartition(LLViewerRegion* regionp)
new
LLOcclusionCullingGroup
(
mOctree
,
this
);
}
void
LLVOCachePartition
::
setDirty
()
{
mDirty
=
TRUE
;
}
void
LLVOCachePartition
::
addEntry
(
LLViewerOctreeEntry
*
entry
)
{
llassert
(
entry
->
hasVOCacheEntry
());
mOctree
->
insert
(
entry
);
m
Dirty
=
TRUE
;
set
Dirty
()
;
}
void
LLVOCachePartition
::
removeEntry
(
LLViewerOctreeEntry
*
entry
)
...
...
@@ -615,7 +626,7 @@ S32 LLVOCachePartition::cull(LLCamera &camera, bool do_occlusion)
}
((
LLviewerOctreeGroup
*
)
mOctree
->
getListener
(
0
))
->
rebound
();
mCullHistory
[
LLViewerCamera
::
sCurCameraID
]
<<=
2
;
mCullHistory
[
LLViewerCamera
::
sCurCameraID
]
<<=
1
;
//localize the camera
LLVector3
region_agent
=
mRegionp
->
getOriginAgent
();
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llvocache.h
+
3
−
4
View file @
ea37dd4a
...
...
@@ -162,14 +162,13 @@ class LLVOCachePartition : public LLViewerOctreePartition, public LLTrace::MemTr
/*virtual*/
S32
cull
(
LLCamera
&
camera
,
bool
do_occlusion
);
void
addOccluders
(
LLviewerOctreeGroup
*
gp
);
void
resetOccluders
();
static
LLTrace
::
MemStatHandle
sMemStat
;
public:
void
processOccluders
(
LLCamera
*
camera
);
void
setDirty
();
public:
static
BOOL
sNeedsOcclusionCheck
;
static
LLTrace
::
MemStatHandle
sMemStat
;
private:
BOOL
mDirty
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment