diff options
author | Dave Parks <davep@lindenlab.com> | 2011-09-24 23:29:38 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-09-24 23:29:38 -0500 |
commit | f49e7014ca9693d77ff265d3fc668a8b05ddf085 (patch) | |
tree | 96895fe605247d78e6bb3951f61a47e2d744a188 /indra/newview/llvowater.cpp | |
parent | c70026499afccc2730119ae3c7abc7ab971170ea (diff) |
SH-2244 Fix for crash when transparent water disabled (silently ignore setting when basic shaders enabled)
Diffstat (limited to 'indra/newview/llvowater.cpp')
-rw-r--r-- | indra/newview/llvowater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvowater.cpp b/indra/newview/llvowater.cpp index 75198c465b..7df50ec815 100644 --- a/indra/newview/llvowater.cpp +++ b/indra/newview/llvowater.cpp @@ -160,7 +160,7 @@ BOOL LLVOWater::updateGeometry(LLDrawable *drawable) static const unsigned int vertices_per_quad = 4; static const unsigned int indices_per_quad = 6; - const S32 size = gSavedSettings.getBOOL("RenderTransparentWater") ? 16 : 1; + const S32 size = gSavedSettings.getBOOL("RenderTransparentWater") && !LLGLSLShader::sNoFixedFunction ? 16 : 1; const S32 num_quads = size * size; face->setSize(vertices_per_quad * num_quads, |