Renamed UnsignedInt to UInt in the compiler.
TRAC #23185
Signed-off-by: Geoff Lang
Signed-off-by: Shannon Woods
Author: Nicolas Capens
diff --git a/src/compiler/ParseHelper.cpp b/src/compiler/ParseHelper.cpp
index b1cd7c1..a44038a 100644
--- a/src/compiler/ParseHelper.cpp
+++ b/src/compiler/ParseHelper.cpp
@@ -1214,7 +1214,7 @@
case EbtUInt:
switch(publicType.getNominalSize())
{
- case 1: op = EOpConstructUnsignedInt; break;
+ case 1: op = EOpConstructUInt; break;
case 2: op = EOpConstructUVec2; break;
case 3: op = EOpConstructUVec3; break;
case 4: op = EOpConstructUVec4; break;
@@ -1390,8 +1390,8 @@
case EOpConstructUVec2:
case EOpConstructUVec3:
case EOpConstructUVec4:
- case EOpConstructUnsignedInt:
- basicOp = EOpConstructUnsignedInt;
+ case EOpConstructUInt:
+ basicOp = EOpConstructUInt;
break;
case EOpConstructBVec2: