glGetFramebufferAttachmentParameterivExt function

void glGetFramebufferAttachmentParameterivExt(
  1. int target,
  2. int attachment,
  3. int pname,
  4. Pointer<Int32> params,
)
define glGetFramebufferAttachmentParameterivEXT GLEW_GET_FUN(__glewGetFramebufferAttachmentParameterivEXT)
GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC __glewGetFramebufferAttachmentParameterivEXT
typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (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);
}