mirror of
https://github.com/libretro/glslang.git
synced 2024-12-14 11:38:56 +00:00
Merge pull request #155 from mgadams/resultid_warnings
Build: Fix two new Windows build warnings/errors
This commit is contained in:
commit
26bd6a313d
@ -1464,7 +1464,7 @@ Id Builder::createCompositeCompare(Decoration precision, Id value1, Id value2, b
|
||||
Id boolType = makeBoolType();
|
||||
Id valueType = getTypeId(value1);
|
||||
|
||||
Id resultId;
|
||||
Id resultId = NoResult;
|
||||
|
||||
int numConstituents = getNumTypeConstituents(valueType);
|
||||
|
||||
@ -1480,6 +1480,7 @@ Id Builder::createCompositeCompare(Decoration precision, Id value1, Id value2, b
|
||||
op = equal ? OpFOrdEqual : OpFOrdNotEqual;
|
||||
break;
|
||||
case OpTypeInt:
|
||||
default:
|
||||
op = equal ? OpIEqual : OpINotEqual;
|
||||
break;
|
||||
case OpTypeBool:
|
||||
|
Loading…
Reference in New Issue
Block a user