mirror of https://github.com/AxioDL/boo.git
Update glslang using temporary branch, fix LtRtProcessing
This commit is contained in:
parent
7acefc6c60
commit
1235cc720d
|
@ -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
|
@ -1 +1 @@
|
|||
Subproject commit 9f46e3dd5e11febbfbed971e74e10ed638e6578d
|
||||
Subproject commit a727ad7335b060aac29f942a9e11f9e694bf5e83
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue