glGetFirstPerfQueryIdIntel function opengl_glext

void glGetFirstPerfQueryIdIntel(
  1. Pointer<Uint32> queryId
)
GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId)

Implementation

void glGetFirstPerfQueryIdIntel(Pointer<Uint32> queryId) {
  final glGetFirstPerfQueryIdIntelAsFunction = _glGetFirstPerfQueryIdIntel
      .cast<NativeFunction<Void Function(Pointer<Uint32> queryId)>>()
      .asFunction<void Function(Pointer<Uint32> queryId)>();
  return glGetFirstPerfQueryIdIntelAsFunction(queryId);
}