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
6d6c38f2
Commit
6d6c38f2
authored
13 years ago
by
prep
Browse files
Options
Downloads
Patches
Plain Diff
Path-197. Navmeshes are converted into vbos.
parent
dd760059
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llrender/llrendernavprim.cpp
+5
-1
5 additions, 1 deletion
indra/llrender/llrendernavprim.cpp
indra/newview/llviewerdisplay.cpp
+0
-3
0 additions, 3 deletions
indra/newview/llviewerdisplay.cpp
with
5 additions
and
4 deletions
indra/llrender/llrendernavprim.cpp
+
5
−
1
View file @
6d6c38f2
...
...
@@ -38,6 +38,7 @@ LLRenderNavPrim gRenderNav;
void
LLRenderNavPrim
::
renderSegment
(
const
LLVector3
&
start
,
const
LLVector3
&
end
,
int
color
,
bool
overlayMode
)
const
{
LLGLSLShader
::
sNoFixedFunction
=
false
;
LLGLEnable
smooth
(
GL_LINE_SMOOTH
);
LLColor4
colorA
(
color
);
glLineWidth
(
1.5
f
);
gGL
.
color3fv
(
colorA
.
mV
);
...
...
@@ -51,6 +52,7 @@ void LLRenderNavPrim::renderSegment( const LLVector3& start, const LLVector3& en
gGL
.
flush
();
LLGLSLShader
::
sNoFixedFunction
=
true
;
LLGLDisable
smoothout
(
GL_LINE_SMOOTH
);
glLineWidth
(
1.0
f
);
}
//=============================================================================
...
...
@@ -86,7 +88,7 @@ void LLRenderNavPrim::renderTri( const LLVector3& a, const LLVector3& b, const L
void
LLRenderNavPrim
::
renderNavMeshVB
(
LLVertexBuffer
*
pVBO
,
int
vertCnt
)
{
LLGLSUIDefault
gls_ui
;
gl
Enable
(
GL_DEPTH_TEST
);
LLGL
Enable
depth
(
GL_DEPTH_TEST
);
LLGLEnable
cull
(
GL_CULL_FACE
);
glLineWidth
(
1.5
f
);
LLGLSLShader
::
sNoFixedFunction
=
false
;
...
...
@@ -94,11 +96,13 @@ void LLRenderNavPrim::renderNavMeshVB( LLVertexBuffer* pVBO, int vertCnt )
pVBO
->
setBuffer
(
LLVertexBuffer
::
MAP_VERTEX
|
LLVertexBuffer
::
MAP_COLOR
|
LLVertexBuffer
::
MAP_NORMAL
);
pVBO
->
drawArrays
(
LLRender
::
TRIANGLES
,
0
,
vertCnt
);
glPolygonMode
(
GL_FRONT_AND_BACK
,
GL_LINE
);
LLGLEnable
smooth
(
GL_LINE_SMOOTH
);
//pass 2 outlined
pVBO
->
drawArrays
(
LLRender
::
TRIANGLES
,
0
,
vertCnt
);
LLGLSLShader
::
sNoFixedFunction
=
true
;
glLineWidth
(
1.0
f
);
glPolygonMode
(
GL_FRONT_AND_BACK
,
GL_FILL
);
LLGLDisable
smoothout
(
GL_LINE_SMOOTH
);
}
//=============================================================================
void
LLRenderNavPrim
::
renderStar
(
const
LLVector3
&
center
,
const
float
scale
,
int
color
)
const
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewerdisplay.cpp
+
0
−
3
View file @
6d6c38f2
...
...
@@ -907,9 +907,6 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot)
//NavMesh
if
(
llPathingLibInstance
->
getRenderNavMeshState
()
)
{
glClearColor
(
0.0
f
,
0.0
f
,
0.0
f
,
0.5
f
);
glEnable
(
GL_DEPTH_TEST
);
gGL
.
setAmbientLightColor
(
LLColor4
::
white
);
llPathingLibInstance
->
renderNavMesh
();
exclusiveDraw
=
true
;
}
...
...
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