diff options
author | Dave Parks <davep@lindenlab.com> | 2024-06-05 15:14:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 15:14:13 -0500 |
commit | 24586f810eb7ef8048a55687333d51c53aa2bed8 (patch) | |
tree | c1213aae9efb9a5b6afd89ab6ce6ffe3dd02c277 /indra/newview/llface.cpp | |
parent | f568e6036bfa133ee8496a751f3269ec772fe5d3 (diff) |
#1527 Improve performance on Apple silicon (#1632)
Diffstat (limited to 'indra/newview/llface.cpp')
-rw-r--r-- | indra/newview/llface.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index 0e2f19b3d9..cda73f59ed 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -628,13 +628,6 @@ void LLFace::renderOneWireframe(const LLColor4 &color, F32 fogCfx, bool wirefram { LLGLDisable depth(wireframe_selection ? 0 : GL_BLEND); - //LLGLEnable stencil(wireframe_selection ? 0 : GL_STENCIL_TEST); - - if (!wireframe_selection) - { //modify wireframe into outline selection mode - glStencilFunc(GL_NOTEQUAL, 2, 0xffff); - glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP); - } LLGLEnable offset(GL_POLYGON_OFFSET_LINE); glPolygonOffset(3.f, 3.f); |