glTexStorageMem1Dext function opengl_glext
void
glTexStorageMem1Dext()
GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset)
Implementation
void glTexStorageMem1Dext(
int target,
int levels,
int internalFormat,
int width,
int memory,
int offset,
) {
final glTexStorageMem1DextAsFunction = _glTexStorageMem1Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 levels,
Uint32 internalFormat,
Uint32 width,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(
int target,
int levels,
int internalFormat,
int width,
int memory,
int offset,
)
>();
return glTexStorageMem1DextAsFunction(
target,
levels,
internalFormat,
width,
memory,
offset,
);
}