2
0

SWDEV-1 - Fix Windows build

Change-Id: I3867b4a7175316121246a639fb8d704ad491adb6
Este cometimento está contido em:
Vladislav Sytchenko
2021-01-26 11:01:30 -05:00
ascendente 280b759175
cometimento 70ac5c3bd8
+2 -2
Ver ficheiro
@@ -1353,7 +1353,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;
}
}
@@ -1379,7 +1379,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;
}
}