From 5ec379571694574ca4155429647a2cb761357b80 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Sat, 16 Jul 2011 23:35:08 -0500 Subject: [PATCH] Resolved LLCachedControl type mismatch with a few settings. --- indra/newview/pipeline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 9ccc3f69f..65dd11119 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6070,7 +6070,7 @@ void LLPipeline::renderBloom(BOOL for_snapshot, F32 zoom_factor, int subfield, b tc2.setVec(2,2); // power of two between 1 and 1024 - static const LLCachedControl glowResPow("RenderGlowResolutionPow",9); + static const LLCachedControl glowResPow("RenderGlowResolutionPow",9); const U32 glow_res = llmax(1, llmin(1024, 1 << glowResPow)); @@ -6717,7 +6717,7 @@ void LLPipeline::bindDeferredShader(LLGLSLShader& shader, U32 light_index, LLRen static const LLCachedControl render_shadow_noise("RenderShadowNoise",-.0001f); static const LLCachedControl render_shadow_blur_size("RenderShadowBlurSize",.7f); static const LLCachedControl render_ssao_scale("RenderSSAOScale",500); - static const LLCachedControl render_ssao_max_scale("RenderSSAOMaxScale",200); + static const LLCachedControl render_ssao_max_scale("RenderSSAOMaxScale",200); static const LLCachedControl render_ssao_factor("RenderSSAOFactor",.3f); static const LLCachedControl render_ssao_effect("RenderSSAOEffect",LLVector3(.4f,1.f,0.f)); static const LLCachedControl render_deferred_alpha_soft("RenderDeferredAlphaSoften",.75f);