SWDEV-245532 - HIP - Vulkan interop semaphores

syntax update

Change-Id: I1eefb8048adbe18c84276092520c1e0b01164e82


[ROCm/clr commit: fe9dbf1ded]
此提交包含在:
pghafari
2021-04-26 18:30:14 -04:00
提交者 Payam Ghafari
父節點 2c15463f3e
當前提交 d620f9ea84
+1 -1
查看文件
@@ -2412,7 +2412,7 @@ bool Device::SetClockMode(const cl_set_device_clock_mode_input_amd setClockModeI
bool Device::importExtSemaphore(void** extSemaphore, void* handle) {
Pal::ExternalQueueSemaphoreOpenInfo palOpenInfo = {};
palOpenInfo.externalSemaphore = handle;
palOpenInfo.externalSemaphore = reinterpret_cast<Pal::OsExternalHandle > (handle);
palOpenInfo.flags.crossProcess = false;
palOpenInfo.flags.isReference = true;
Pal::Result result;