glGetFramebufferAttachmentParameterivExt function opengl_glext
void
glGetFramebufferAttachmentParameterivExt()
GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params)
Implementation
void glGetFramebufferAttachmentParameterivExt(
int target,
int attachment,
int pname,
Pointer<Int32> params,
) {
final glGetFramebufferAttachmentParameterivExtAsFunction =
_glGetFramebufferAttachmentParameterivExt
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 attachment,
Uint32 pname,
Pointer<Int32> params,
)
>
>()
.asFunction<
void Function(
int target,
int attachment,
int pname,
Pointer<Int32> params,
)
>();
return glGetFramebufferAttachmentParameterivExtAsFunction(
target,
attachment,
pname,
params,
);
}