mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Merge pull request #21474 from elasota/fix-cvtt-scalar
Fix CVTT scalar version not compiling
This commit is contained in:
commit
439e562b1a
10
thirdparty/cvtt/ConvectionKernels.cpp
vendored
10
thirdparty/cvtt/ConvectionKernels.cpp
vendored
@ -1420,6 +1420,16 @@ namespace cvtt
|
||||
return v;
|
||||
}
|
||||
|
||||
static bool MakeBoolInt16(bool b)
|
||||
{
|
||||
return b;
|
||||
}
|
||||
|
||||
static bool MakeBoolFloat(bool b)
|
||||
{
|
||||
return b;
|
||||
}
|
||||
|
||||
static bool AndNot(bool a, bool b)
|
||||
{
|
||||
return a && !b;
|
||||
|
Loading…
Reference in New Issue
Block a user