SWDEV-1 - Fix Windows build

Change-Id: I144142b2b31785fe7b1d319fb7e88eb2b41099ac
This commit is contained in:
Vladislav Sytchenko
2021-01-26 15:51:57 -05:00
orang tua 31e772adb5
melakukan 09c28dcbf4
+2 -2
Melihat File
@@ -1352,7 +1352,7 @@ static GLenum clChannelDataTypeToGlType(cl_channel_type channel_type) {
case CL_UNORM_SHORT_565:
case CL_UNORM_SHORT_555:
default:
guarantee(false && "Unexpected CL type.");
guarantee(false, "Unexpected CL type.");
return 0;
}
}
@@ -1378,7 +1378,7 @@ static GLenum glInternalFormatToGlFormat(GLenum internalFormat) {
return GL_RGBA_INTEGER;
default:
guarantee(false && "Unexpected GL internal format.");
guarantee(false, "Unexpected GL internal format.");
return 0;
}
}