SWDEV-245532 - HIP - Vulkan interop semaphores

linuxpro syntax update

Change-Id: I184e1293ff4b046c5f8376d06f1d8e9509cd7ba2
Este commit está contenido en:
pghafari
2021-04-27 13:27:37 -04:00
padre fe9dbf1ded
commit 6e69864a0c
+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 = reinterpret_cast<Pal::OsExternalHandle > (handle);
palOpenInfo.externalSemaphore = static_cast<Pal::OsExternalHandle>(reinterpret_cast<uintptr_t>(handle));
palOpenInfo.flags.crossProcess = false;
palOpenInfo.flags.isReference = true;
Pal::Result result;