diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index eba36d782b4d9f202879ee17615be30f81802bd1..12a2845ee2b06ef05e32587e25659dd1d1826761 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -852,11 +852,6 @@ bool LLPipeline::allocateScreenBuffer(U32 resX, U32 resY, U32 samples) mRT->width = resX; mRT->height = resY; - if (!is_aux_alloc && LLPipeline::sRenderTransparentWater) - { //water reflection texture - if (!mWaterDis.allocate(resX, resY, GL_RGBA, true)) return false; - } - if (!is_aux_alloc && RenderUIBuffer) { if (!mRT->uiScreen.allocate(resX,resY, GL_RGBA)) @@ -878,6 +873,11 @@ bool LLPipeline::allocateScreenBuffer(U32 resX, U32 resY, U32 samples) mRT->deferredScreen.shareDepthBuffer(mRT->screen); + if (!is_aux_alloc && LLPipeline::sRenderTransparentWater) + { //water reflection texture + if (!mWaterDis.allocate(resX, resY, screenFormat, true)) return false; + } + //if (shadow_detail > 0 || ssao || gSavedSettings.getU32("RenderSharpenMethod") != ALRenderUtil::SHARPEN_NONE) { //only need mRT->deferredLight for shadows OR ssao OR sharpening if (!mRT->deferredLight.allocate(resX, resY, screenFormat)) return false;