We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f396eb commit 4493232Copy full SHA for 4493232
layers/12_spirvqueriesemu/emulate.cpp
@@ -411,6 +411,11 @@ struct SLayerContext
411
deviceInfo.Extensions.push_back("SPV_KHR_linkonce_odr");
412
}
413
414
+ // Required for devices supporting cl_khr_spirv_extended_debug_info.
415
+ if (checkStringForExtension(deviceExtensions.c_str(), "cl_khr_spirv_extended_debug_info")) {
416
+ deviceInfo.ExtendedInstructionSets.push_back("OpenCL.DebugInfo.100");
417
+ }
418
+
419
// Required for devices supporting cl_khr_spirv_no_integer_wrap_decoration.
420
if (checkStringForExtension(deviceExtensions.c_str(), "cl_khr_spirv_no_integer_wrap_decoration")) {
421
deviceInfo.Extensions.push_back("SPV_KHR_no_integer_wrap_decoration");
0 commit comments