Change-Id: I3867b4a7175316121246a639fb8d704ad491adb6


[ROCm/clr commit: 70ac5c3bd8]
Этот коммит содержится в:
Vladislav Sytchenko
2021-01-26 11:01:30 -05:00
родитель dcad5a921e
Коммит 481b25fd08
+2 -2
Просмотреть файл
@@ -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;
}
}