This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
TorqueEngine
/
Torque3D
同期ミラー
https://github.com/TorqueGameEngines/Torque3D.git
ウォッチ
2
スター
0
フォーク
0
ファイル
課題
0
Wiki
ソースを参照
Fix waterBasicP.glsl for HDR.
LuisAntonRebollo
10 年 前
親
74a05854d5
コミット
049de72cc5
2 ファイル変更
、
2 行追加
、
2 行削除
分割表示
差分情報を表示
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
ファイルの表示
@@ -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
ファイルの表示
@@ -210,7 +210,7 @@ void main()
#endif
- OUT_col = OUT;
+ OUT_col =
hdrEncode(
OUT
)
;
#endif
}