glDebugMessageControlArb function opengl_glext

void glDebugMessageControlArb(
  1. int source,
  2. int type,
  3. int severity,
  4. int count,
  5. Pointer<Uint32> ids,
  6. int enabled,
)
GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled)

Implementation

void glDebugMessageControlArb(
  int source,
  int type,
  int severity,
  int count,
  Pointer<Uint32> ids,
  int enabled,
) {
  final glDebugMessageControlArbAsFunction = _glDebugMessageControlArb
      .cast<
        NativeFunction<
          Void Function(
            Uint32 source,
            Uint32 type,
            Uint32 severity,
            Uint32 count,
            Pointer<Uint32> ids,
            Int32 enabled,
          )
        >
      >()
      .asFunction<
        void Function(
          int source,
          int type,
          int severity,
          int count,
          Pointer<Uint32> ids,
          int enabled,
        )
      >();
  return glDebugMessageControlArbAsFunction(
    source,
    type,
    severity,
    count,
    ids,
    enabled,
  );
}