diff options
author | Dave Parks <davep@lindenlab.com> | 2023-02-01 16:23:44 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-02-01 16:23:44 -0600 |
commit | c136c5ece4a6baf3b0a34c32211e00a3d0fc4b69 (patch) | |
tree | 03388c06dfda11a955b5ad63b32a596f10d4f304 /indra | |
parent | 29ecdd09b903ca47665b3d8165c2d041339f3258 (diff) |
SL-18772 Potential fix for failed shader load on Intel HD 3000
Diffstat (limited to 'indra')
-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 52509d3d29..6e3d89eedc 100644 --- a/indra/llrender/llshadermgr.cpp +++ b/indra/llrender/llshadermgr.cpp @@ -190,7 +190,7 @@ BOOL LLShaderMgr::attachShaderFeatures(LLGLSLShader * shader) } } - if(features->calculatesAtmospherics) + if(features->calculatesAtmospherics || features->hasGamma || features->isDeferred) { if (features->hasWaterFog) { |