diff options
author | Dave Parks <davep@lindenlab.com> | 2011-09-16 17:08:39 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-09-16 17:08:39 -0500 |
commit | 8a1baaea6c0462b645499e8e7b88345e46b92621 (patch) | |
tree | 565537e0a9c3bf0c9d982e8da90dc420a5844b04 /indra/newview/app_settings/shaders/class2/effects/simpleF.glsl | |
parent | da84f5552731e1ece3a463c4c385bb327f1048a1 (diff) |
SH-2243 work in progress -- don't use gl_FragColor or gl_FragData for outputs -- no more deprecation warnings on nvidia
Diffstat (limited to 'indra/newview/app_settings/shaders/class2/effects/simpleF.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class2/effects/simpleF.glsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/app_settings/shaders/class2/effects/simpleF.glsl b/indra/newview/app_settings/shaders/class2/effects/simpleF.glsl index 74e9559185..7e8be3c19c 100644 --- a/indra/newview/app_settings/shaders/class2/effects/simpleF.glsl +++ b/indra/newview/app_settings/shaders/class2/effects/simpleF.glsl @@ -23,7 +23,9 @@ * $/LicenseInfo$ */ - +#ifndef gl_FragColor +out vec4 gl_FragColor; +#endif uniform sampler2DRect RenderTexture; |