summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/interface/uiF.glsl
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-09-12 07:29:26 +0800
committerErik Kundiman <erik@megapahit.org>2025-09-12 07:57:30 +0800
commitf87fa59b1e490d7a752bf8937bc67b7b18a62ad5 (patch)
tree1794ca14a7da95fbaa621661c2096a4b39142fb2 /indra/newview/app_settings/shaders/class1/interface/uiF.glsl
parent7279245b5fee11bf0683a068639d42f3bacd5e6b (diff)
parent067d83b640d3fae45098ef8bc71e913c1eb65a44 (diff)
Merge remote-tracking branch 'mobserveur/experimental2'
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/interface/uiF.glsl')
-rw-r--r--indra/newview/app_settings/shaders/class1/interface/uiF.glsl4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/app_settings/shaders/class1/interface/uiF.glsl b/indra/newview/app_settings/shaders/class1/interface/uiF.glsl
index 42cc333829..83fe1c505f 100644
--- a/indra/newview/app_settings/shaders/class1/interface/uiF.glsl
+++ b/indra/newview/app_settings/shaders/class1/interface/uiF.glsl
@@ -27,12 +27,10 @@ out vec4 frag_color;
uniform sampler2D diffuseMap;
-uniform float mpHDRBoost = 1.0;
-
in vec2 vary_texcoord0;
in vec4 vertex_color;
void main()
{
- frag_color = mpHDRBoost * vertex_color*texture(diffuseMap, vary_texcoord0.xy);
+ frag_color = vertex_color*texture(diffuseMap, vary_texcoord0.xy);
}