diff options
author | Dave Parks <davep@lindenlab.com> | 2022-10-07 15:25:48 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-10-07 15:25:48 -0500 |
commit | 18309bc7fbfefa7aec29b24b727de7fe07da96fe (patch) | |
tree | 66a6f78ef022b8082db9ccc316b44ae8418be30b /indra | |
parent | 4a4b0f8ee8834de01e52d32aecdb0479ed5fb7a9 (diff) |
SL-18190 Fix for DoF
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lldrawpoolalpha.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lldrawpoolalpha.cpp b/indra/newview/lldrawpoolalpha.cpp index fb2a4d78fc..8a912b00d9 100644 --- a/indra/newview/lldrawpoolalpha.cpp +++ b/indra/newview/lldrawpoolalpha.cpp @@ -184,8 +184,8 @@ void LLDrawPoolAlpha::renderPostDeferred(S32 pass) renderAlpha(getVertexDataMask() | LLVertexBuffer::MAP_TEXTURE_INDEX | LLVertexBuffer::MAP_TANGENT | LLVertexBuffer::MAP_TEXCOORD1 | LLVertexBuffer::MAP_TEXCOORD2, true); // <--- discard mostly transparent faces - gPipeline.mRT->deferredDepth.flush(); - gPipeline.mRT->screen.bindTarget(); + //gPipeline.mRT->deferredDepth.flush(); + //gPipeline.mRT->screen.bindTarget(); gGL.setColorMask(true, false); } |