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 772a3c3Copy full SHA for 772a3c3
layers/12_spirvqueriesemu/emulate.cpp
@@ -406,6 +406,11 @@ struct SLayerContext
406
deviceInfo.Capabilities.push_back(spv::CapabilityImageMipmap);
407
}
408
409
+ // Required for devices supporting cl_khr_spirv_extended_debug_info.
410
+ if (checkStringForExtension(deviceExtensions.c_str(), "cl_khr_spirv_extended_debug_info")) {
411
+ deviceInfo.ExtendedInstructionSets.push_back("OpenCL.DebugInfo.100");
412
+ }
413
+
414
// Required for devices supporting cl_khr_spirv_linkonce_odr.
415
if (checkStringForExtension(deviceExtensions.c_str(), "cl_khr_spirv_linkonce_odr")) {
416
deviceInfo.Extensions.push_back("SPV_KHR_linkonce_odr");
0 commit comments