spirv-val: Add GLCompute to VUID 04644 message (#4333)

This commit is contained in:
sfricke-samsung 2021-06-21 06:31:55 -07:00 коммит произвёл GitHub
Родитель 5dd2f76918
Коммит e84bcb251d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -591,8 +591,9 @@ void ValidationState_t::RegisterStorageClassConsumer(
*message =
errorVUID +
"in Vulkan evironment, Output Storage Class must not be "
"used in RayGenerationKHR, IntersectionKHR, AnyHitKHR, "
"ClosestHitKHR, MissKHR, or CallableKHR execution models";
"used in GLCompute, RayGenerationKHR, IntersectionKHR, "
"AnyHitKHR, ClosestHitKHR, MissKHR, or CallableKHR "
"execution models";
}
return false;
}

Просмотреть файл

@ -281,7 +281,7 @@ TEST_P(ValidateStorageExecutionModel, VulkanOutsideStoreFailure) {
EXPECT_THAT(
getDiagnosticString(),
HasSubstr("in Vulkan evironment, Output Storage Class must not be used "
"in RayGenerationKHR, IntersectionKHR, AnyHitKHR, "
"in GLCompute, RayGenerationKHR, IntersectionKHR, AnyHitKHR, "
"ClosestHitKHR, MissKHR, or CallableKHR execution models"));
}