glTexStorageSparseAmd function opengl_glext
void
glTexStorageSparseAmd()
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,
Int32 width,
Int32 height,
Int32 depth,
Int32 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,
);
}