From 18e6e3bde6d63e5658f634499451fffad2f619bf Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 2 Dec 2023 01:25:10 -0500
Subject: [PATCH] Fix water distortion color being dark

---
 indra/newview/pipeline.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index eba36d782b4..12a2845ee2b 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;
-- 
GitLab