SWDEV-245532 - HIP - Vulkan interop semaphores

linuxpro syntax update

Change-Id: I184e1293ff4b046c5f8376d06f1d8e9509cd7ba2


[ROCm/clr commit: 6e69864a0c]
Cette révision appartient à :
pghafari
2021-04-27 13:27:37 -04:00
Parent d620f9ea84
révision 4eca2cb891
+1 -1
Voir le fichier
@@ -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;