glBitmapxOes function opengl_glext
void
glBitmapxOes()
GLAPI void APIENTRY glBitmapxOES (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap)
Implementation
void glBitmapxOes(
int width,
int height,
int xorig,
int yorig,
int xmove,
int ymove,
Pointer<Uint8> bitmap,
) {
final glBitmapxOesAsFunction = _glBitmapxOes
.cast<
NativeFunction<
Void Function(
Uint32 width,
Uint32 height,
Int32 xorig,
Int32 yorig,
Int32 xmove,
Int32 ymove,
Pointer<Uint8> bitmap,
)
>
>()
.asFunction<
void Function(
int width,
int height,
int xorig,
int yorig,
int xmove,
int ymove,
Pointer<Uint8> bitmap,
)
>();
return glBitmapxOesAsFunction(
width,
height,
xorig,
yorig,
xmove,
ymove,
bitmap,
);
}