From 601c2914ecde68134474f9f8f0996e53b54d7842 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Tue, 7 Jul 2020 23:17:35 -0400
Subject: [PATCH] Fix check for bump draw type in bump draw pool

---
 indra/newview/lldrawpoolbump.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/lldrawpoolbump.cpp b/indra/newview/lldrawpoolbump.cpp
index 989127fb6fa..290b0471555 100644
--- a/indra/newview/lldrawpoolbump.cpp
+++ b/indra/newview/lldrawpoolbump.cpp
@@ -266,7 +266,7 @@ void LLDrawPoolBump::render(S32 pass)
 {
 	LL_RECORD_BLOCK_TIME(FTM_RENDER_BUMP);
 	
-	if (!gPipeline.hasRenderType(LLDrawPool::POOL_SIMPLE))
+	if (!gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_BUMP))
 	{
 		return;
 	}
-- 
GitLab