summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2023-01-31 17:05:58 -0600
committerDave Parks <davep@lindenlab.com>2023-01-31 17:05:58 -0600
commit4522864f0b12d252a953441bade7fa72a53554b9 (patch)
treed906b9442791bbd5e8c8c5c5bc49ffe351c5e88a /indra/llrender
parent280c92b7de3fce2751d94ee98faea293bd911fd0 (diff)
SL-18772 Potential fix for failed shader load on Intel HD 3000
Diffstat (limited to 'indra/llrender')
-rw-r--r--indra/llrender/llshadermgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llshadermgr.cpp b/indra/llrender/llshadermgr.cpp
index 421b9ee2d6..52509d3d29 100644
--- a/indra/llrender/llshadermgr.cpp
+++ b/indra/llrender/llshadermgr.cpp
@@ -278,7 +278,7 @@ BOOL LLShaderMgr::attachShaderFeatures(LLGLSLShader * shader)
}
}
- if (features->hasAtmospherics)
+ if (features->hasAtmospherics || features->isDeferred)
{
if (!shader->attachFragmentObject("windlight/atmosphericsFuncs.glsl")) {
return FALSE;