glTexStorageMem2DMultisampleExt function opengl_glext

void glTexStorageMem2DMultisampleExt(
  1. int target,
  2. int samples,
  3. int internalFormat,
  4. int width,
  5. int height,
  6. int fixedSampleLocations,
  7. int memory,
  8. int offset,
)
GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset)

Implementation

void glTexStorageMem2DMultisampleExt(
  int target,
  int samples,
  int internalFormat,
  int width,
  int height,
  int fixedSampleLocations,
  int memory,
  int offset,
) {
  final glTexStorageMem2DMultisampleExtAsFunction =
      _glTexStorageMem2DMultisampleExt
          .cast<
            NativeFunction<
              Void Function(
                Uint32 target,
                Uint32 samples,
                Uint32 internalFormat,
                Uint32 width,
                Uint32 height,
                Int32 fixedSampleLocations,
                Uint32 memory,
                Uint64 offset,
              )
            >
          >()
          .asFunction<
            void Function(
              int target,
              int samples,
              int internalFormat,
              int width,
              int height,
              int fixedSampleLocations,
              int memory,
              int offset,
            )
          >();
  return glTexStorageMem2DMultisampleExtAsFunction(
    target,
    samples,
    internalFormat,
    width,
    height,
    fixedSampleLocations,
    memory,
    offset,
  );
}