diff options
| author | mobserveur <mobserveur@gmail.com> | 2026-08-25 12:36:21 +0200 |
|---|---|---|
| committer | mobserveur <mobserveur@gmail.com> | 2026-08-25 12:36:21 +0200 |
| commit | 6987927358b22436f4d84a294af7677a759c6f2f (patch) | |
| tree | c0d7d1fd0dcd7499f0564605746554c83ec534f8 /indra | |
| parent | fb2376983a87711b0c01a8ac9ad29b8cf8079249 (diff) | |
removing of a redondant call in doOcclusion
This commit removes a call that appears to be redondant in doOcclussion in pipeline.cpp
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index f4c121c18b..9b104f363a 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2711,6 +2711,7 @@ void LLPipeline::doOcclusion(LLCamera& camera) gGL.setColorMask(true, true); } + /* if (sReflectionProbesEnabled && sUseOcclusion > 1 && !LLPipeline::sShadowRender && !gCubeSnapshot) { gGL.setColorMask(false, false); @@ -2730,6 +2731,7 @@ void LLPipeline::doOcclusion(LLCamera& camera) gGL.setColorMask(true, true); } + */ if (LLPipeline::sUseOcclusion > 1 && (sCull->hasOcclusionGroups() || LLVOCachePartition::sNeedsOcclusionCheck)) |
