glGetNextPerfQueryIdIntel function opengl_glext

void glGetNextPerfQueryIdIntel(
  1. int queryId,
  2. Pointer<Uint32> nextQueryId
)
GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId)

Implementation

void glGetNextPerfQueryIdIntel(int queryId, Pointer<Uint32> nextQueryId) {
  final glGetNextPerfQueryIdIntelAsFunction = _glGetNextPerfQueryIdIntel
      .cast<
        NativeFunction<
          Void Function(Uint32 queryId, Pointer<Uint32> nextQueryId)
        >
      >()
      .asFunction<void Function(int queryId, Pointer<Uint32> nextQueryId)>();
  return glGetNextPerfQueryIdIntelAsFunction(queryId, nextQueryId);
}