glTexImage3D method
void
glTexImage3D()
Implementation
void glTexImage3D(
int target,
int level,
int internalformat,
int width,
int height,
int depth,
int border,
int format,
int type,
ffi.Pointer<ffi.Void> pixels,
) {
return _glTexImage3D(
target,
level,
internalformat,
width,
height,
depth,
border,
format,
type,
pixels,
);
}