glTexStorageMem3DMultisampleExt function opengl_glext
void
glTexStorageMem3DMultisampleExt()
GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset)
Implementation
void glTexStorageMem3DMultisampleExt(
int target,
int samples,
int internalFormat,
int width,
int height,
int depth,
int fixedSampleLocations,
int memory,
int offset,
) {
final glTexStorageMem3DMultisampleExtAsFunction =
_glTexStorageMem3DMultisampleExt
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 samples,
Uint32 internalFormat,
Int32 width,
Int32 height,
Int32 depth,
Uint8 fixedSampleLocations,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(
int target,
int samples,
int internalFormat,
int width,
int height,
int depth,
int fixedSampleLocations,
int memory,
int offset,
)
>();
return glTexStorageMem3DMultisampleExtAsFunction(
target,
samples,
internalFormat,
width,
height,
depth,
fixedSampleLocations,
memory,
offset,
);
}