glBitmapxOes function opengl_glext

void glBitmapxOes(
  1. int width,
  2. int height,
  3. int xorig,
  4. int yorig,
  5. int xmove,
  6. int ymove,
  7. Pointer<Uint8> bitmap,
)
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,
  );
}