mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-08 13:15:15 +00:00
Update glslang using temporary branch, fix LtRtProcessing
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,6 +1,7 @@
|
||||
[submodule "glslang"]
|
||||
path = glslang
|
||||
url = https://github.com/KhronosGroup/glslang.git
|
||||
url = https://github.com/Antidote/glslang.git
|
||||
branch = const-operators
|
||||
[submodule "logvisor"]
|
||||
path = logvisor
|
||||
url = ../logvisor.git
|
||||
|
||||
2
glslang
2
glslang
Submodule glslang updated: 9f46e3dd5e...a727ad7335
@@ -18,7 +18,7 @@ constexpr T ClampFull(float in) {
|
||||
|
||||
if (in < MIN)
|
||||
return MIN;
|
||||
else if (in > MAX)
|
||||
else if (in > static_cast<float>(MAX))
|
||||
return MAX;
|
||||
else
|
||||
return in;
|
||||
|
||||
Reference in New Issue
Block a user