glGetInternalformatSampleivNv function opengl_glext

void glGetInternalformatSampleivNv(
  1. int target,
  2. int internalformat,
  3. int samples,
  4. int pname,
  5. int count,
  6. Pointer<Int32> params,
)
GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params)

Implementation

void glGetInternalformatSampleivNv(
  int target,
  int internalformat,
  int samples,
  int pname,
  int count,
  Pointer<Int32> params,
) {
  final glGetInternalformatSampleivNvAsFunction = _glGetInternalformatSampleivNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Uint32 internalformat,
            Uint32 samples,
            Uint32 pname,
            Uint32 count,
            Pointer<Int32> params,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int internalformat,
          int samples,
          int pname,
          int count,
          Pointer<Int32> params,
        )
      >();
  return glGetInternalformatSampleivNvAsFunction(
    target,
    internalformat,
    samples,
    pname,
    count,
    params,
  );
}