glGetNextPerfQueryIdIntel function opengl_glext
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);
}