SWDEV-245532 - HIP - Vulkan interop semaphores

syntax update

Change-Id: I1eefb8048adbe18c84276092520c1e0b01164e82
Este commit está contenido en:
pghafari
2021-04-26 18:30:14 -04:00
cometido por Payam Ghafari
padre bd8ca3827e
commit fe9dbf1ded
+1 -1
Ver fichero
@@ -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;