This website works better with JavaScript
Home
Explore
Help
Sign In
TorqueEngine
/
Torque3D
mirror of
https://github.com/TorqueGameEngines/Torque3D.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Fix waterBasicP.glsl for HDR.
LuisAntonRebollo
10 years ago
parent
74a05854d5
commit
049de72cc5
2 changed files
with
2 additions
and
2 deletions
Split View
Show Diff Stats
1
1
Templates/Empty/game/shaders/common/water/gl/waterBasicP.glsl
1
1
Templates/Full/game/shaders/common/water/gl/waterBasicP.glsl
+ 1
- 1
Templates/Empty/game/shaders/common/water/gl/waterBasicP.glsl
View File
@@ -210,7 +210,7 @@ void main()
#endif
- OUT_col = OUT;
+ OUT_col =
hdrEncode(
OUT
)
;
#endif
}
+ 1
- 1
Templates/Full/game/shaders/common/water/gl/waterBasicP.glsl
View File
@@ -210,7 +210,7 @@ void main()
#endif
- OUT_col = OUT;
+ OUT_col =
hdrEncode(
OUT
)
;
#endif
}