glWaitVkSemaphoreNv function opengl_glext

void glWaitVkSemaphoreNv(
  1. int vkSemaphore
)
GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore)

Implementation

void glWaitVkSemaphoreNv(int vkSemaphore) {
  final glWaitVkSemaphoreNvAsFunction = _glWaitVkSemaphoreNv
      .cast<NativeFunction<Void Function(Uint64 vkSemaphore)>>()
      .asFunction<void Function(int vkSemaphore)>();
  return glWaitVkSemaphoreNvAsFunction(vkSemaphore);
}