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