glGetnTexImageArb function opengl_glext

void glGetnTexImageArb(
  1. int target,
  2. int level,
  3. int format,
  4. int type,
  5. int bufSize,
  6. Pointer<NativeType> img,
)
GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img)

Implementation

void glGetnTexImageArb(
  int target,
  int level,
  int format,
  int type,
  int bufSize,
  Pointer<NativeType> img,
) {
  final glGetnTexImageArbAsFunction = _glGetnTexImageArb
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Int32 level,
            Uint32 format,
            Uint32 type,
            Uint32 bufSize,
            Pointer<NativeType> img,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int level,
          int format,
          int type,
          int bufSize,
          Pointer<NativeType> img,
        )
      >();
  return glGetnTexImageArbAsFunction(target, level, format, type, bufSize, img);
}