glSignalVkSemaphoreNv function opengl_glext

void glSignalVkSemaphoreNv(
  1. int vkSemaphore
)
GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore)

Implementation

void glSignalVkSemaphoreNv(int vkSemaphore) {
  final glSignalVkSemaphoreNvAsFunction = _glSignalVkSemaphoreNv
      .cast<NativeFunction<Void Function(Uint64 vkSemaphore)>>()
      .asFunction<void Function(int vkSemaphore)>();
  return glSignalVkSemaphoreNvAsFunction(vkSemaphore);
}