glTexStorageSparseAmd function opengl_glext

void glTexStorageSparseAmd(
  1. int target,
  2. int internalFormat,
  3. int width,
  4. int height,
  5. int depth,
  6. int layers,
  7. int flags,
)
GLAPI void APIENTRY glTexStorageSparseAMD (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags)

Implementation

void glTexStorageSparseAmd(
  int target,
  int internalFormat,
  int width,
  int height,
  int depth,
  int layers,
  int flags,
) {
  final glTexStorageSparseAmdAsFunction = _glTexStorageSparseAmd
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Uint32 internalFormat,
            Uint32 width,
            Uint32 height,
            Uint32 depth,
            Uint32 layers,
            Uint32 flags,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int internalFormat,
          int width,
          int height,
          int depth,
          int layers,
          int flags,
        )
      >();
  return glTexStorageSparseAmdAsFunction(
    target,
    internalFormat,
    width,
    height,
    depth,
    layers,
    flags,
  );
}