diff options
author | mobserveur <mobserveur@gmail.co[alias]> | 2025-04-08 16:18:14 +0200 |
---|---|---|
committer | mobserveur <mobserveur@gmail.co[alias]> | 2025-04-08 16:18:14 +0200 |
commit | a158216858fa4f311e7a9618612849ce093a4e67 (patch) | |
tree | 889d4cfadb078ed8a160401f08f1a0c5e7588340 /indra | |
parent | 19cabe39fb713500b511c16e7ec9b11a565a3e08 (diff) |
Suppression of a redondant call in LLDrawPoolWaterExclusion
The second call to pwaterpool->pushWaterPlanes(1) is a reminicence of an older method
where it was using 2 passes.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lldrawpoolwaterexclusion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolwaterexclusion.cpp b/indra/newview/lldrawpoolwaterexclusion.cpp index d796bf39bf..5d8fa9b7a1 100644 --- a/indra/newview/lldrawpoolwaterexclusion.cpp +++ b/indra/newview/lldrawpoolwaterexclusion.cpp @@ -61,7 +61,7 @@ void LLDrawPoolWaterExclusion::render(S32 pass) pwaterpool->pushWaterPlanes(0); // Take care of the edge water tiles. - pwaterpool->pushWaterPlanes(1); + //pwaterpool->pushWaterPlanes(1); } gDrawColorProgram.uniform4f(LLShaderMgr::DIFFUSE_COLOR, 0, 0, 0, 1); |