diff --git a/indra/llrender/llglslshader.cpp b/indra/llrender/llglslshader.cpp
index 90c9d00bc1e54c1c3368a850e77e49fd621adc24..eb99b39802bb249347417a55f1c42dea5297ff26 100644
--- a/indra/llrender/llglslshader.cpp
+++ b/indra/llrender/llglslshader.cpp
@@ -58,6 +58,7 @@ LLGLSLShader* LLGLSLShader::sCurBoundShaderPtr = NULL;
 S32 LLGLSLShader::sIndexedTextureChannels = 0;
 bool LLGLSLShader::sProfileEnabled = false;
 std::set<LLGLSLShader*> LLGLSLShader::sInstances;
+LLGLSLShader::defines_map_t LLGLSLShader::sGlobalDefines;
 U64 LLGLSLShader::sTotalTimeElapsed = 0;
 U32 LLGLSLShader::sTotalTrianglesDrawn = 0;
 U64 LLGLSLShader::sTotalSamplesDrawn = 0;
@@ -2001,6 +2002,12 @@ LLUUID LLGLSLShader::hash()
         hash_obj.update(define_pair.first);
         hash_obj.update(define_pair.second);
 
+    }
+    for (const auto& define_pair : LLGLSLShader::sGlobalDefines)
+    {
+        hash_obj.update(define_pair.first);
+        hash_obj.update(define_pair.second);
+
     }
     hash_obj.update(&mFeatures, sizeof(LLShaderFeatures));
     hash_obj.update(gGLManager.mGLVendor);
diff --git a/indra/llrender/llglslshader.h b/indra/llrender/llglslshader.h
index 22664ac4d4cd936d830dbe28cf25ba332fed9c8c..5838aef8a92607676239c97e374b024dcaea33ca 100644
--- a/indra/llrender/llglslshader.h
+++ b/indra/llrender/llglslshader.h
@@ -313,6 +313,7 @@ class LLGLSLShader
     std::string mName;
     typedef std::map<std::string, std::string> defines_map_t;
     defines_map_t mDefines;
+    static defines_map_t sGlobalDefines;
     LLUUID mShaderHash;
     bool mUsingBinaryProgram = false;
 
diff --git a/indra/newview/llviewershadermgr.cpp b/indra/newview/llviewershadermgr.cpp
index bc2b33e5ca1ddd724b9271049680acd84bb6b294..df8227027b01e801845008f67648f072a1db708d 100644
--- a/indra/newview/llviewershadermgr.cpp
+++ b/indra/newview/llviewershadermgr.cpp
@@ -683,6 +683,8 @@ std::string LLViewerShaderMgr::loadBasicShaders()
 		attribs["REF_SAMPLE_COUNT"] = "32";
 	}
 
+	LLGLSLShader::sGlobalDefines = attribs;
+
 	// We no longer have to bind the shaders to global glhandles, they are automatically added to a map now.
 	for (U32 i = 0; i < shaders.size(); i++)
 	{