glGetObjectLabelExt function opengl_glext
void
glGetObjectLabelExt()
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);
}