diff options
author | Dave Parks <davep@lindenlab.com> | 2023-01-24 14:17:36 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-01-24 14:17:36 -0600 |
commit | 623bb4d58c197fccc8a795426c5864104301cebe (patch) | |
tree | d620b999d09002f3bdd83de8b595c74dd09becc8 /indra/llrender/llshadermgr.cpp | |
parent | fea731ecb3fbe0472777bfafa98156ebe75a5049 (diff) |
SL-18772 Potential fix for failed shader load on Intel HD 3000
Diffstat (limited to 'indra/llrender/llshadermgr.cpp')
-rw-r--r-- | indra/llrender/llshadermgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llshadermgr.cpp b/indra/llrender/llshadermgr.cpp index 44b8ea164b..6001b011ee 100644 --- a/indra/llrender/llshadermgr.cpp +++ b/indra/llrender/llshadermgr.cpp @@ -262,7 +262,7 @@ BOOL LLShaderMgr::attachShaderFeatures(LLGLSLShader * shader) } } - if (features->hasGamma) + if (features->hasGamma || features->isDeferred) { if (!shader->attachFragmentObject("windlight/gammaF.glsl")) { |