glGetObjectLabelExt function opengl_glext

void glGetObjectLabelExt(
  1. int type,
  2. int object,
  3. int bufSize,
  4. Pointer<Uint32> length,
  5. Pointer<Int8> label,
)
GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label)

Implementation

void glGetObjectLabelExt(
  int type,
  int object,
  int bufSize,
  Pointer<Uint32> length,
  Pointer<Int8> label,
) {
  final glGetObjectLabelExtAsFunction = _glGetObjectLabelExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 type,
            Uint32 object,
            Uint32 bufSize,
            Pointer<Uint32> length,
            Pointer<Int8> label,
          )
        >
      >()
      .asFunction<
        void Function(
          int type,
          int object,
          int bufSize,
          Pointer<Uint32> length,
          Pointer<Int8> label,
        )
      >();
  return glGetObjectLabelExtAsFunction(type, object, bufSize, length, label);
}