This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
TorqueEngine
/
Torque3D
peilaus alkaen
https://github.com/TorqueGameEngines/Torque3D.git
Tarkkaile
2
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Selaa lähdekoodia
Fix waterBasicP.glsl for HDR.
LuisAntonRebollo
10 vuotta sitten
vanhempi
74a05854d5
commit
049de72cc5
2 muutettua tiedostoa
jossa
2 lisäystä
ja
2 poistoa
Jaettu näkymä
Näytä diff tilastot
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
Näytä tiedosto
@@ -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
Näytä tiedosto
@@ -210,7 +210,7 @@ void main()
#endif
- OUT_col = OUT;
+ OUT_col =
hdrEncode(
OUT
)
;
#endif
}