This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
TorqueEngine
/
Torque3D
mirror of
https://github.com/TorqueGameEngines/Torque3D.git
Xem
2
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
Fix waterBasicP.glsl for HDR.
LuisAntonRebollo
10 năm trước cách đây
mục cha
74a05854d5
commit
049de72cc5
2 tập tin đã thay đổi
với
2 bổ sung
và
2 xóa
Split View
Hiển thị tình trạng sai khác
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
Xem Tập Tin
@@ -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
Xem Tập Tin
@@ -210,7 +210,7 @@ void main()
#endif
- OUT_col = OUT;
+ OUT_col =
hdrEncode(
OUT
)
;
#endif
}