glRasterPos4xvOes function opengl_glext

void glRasterPos4xvOes(
  1. Pointer<Int32> coords
)
GLAPI void APIENTRY glRasterPos4xvOES (const GLfixed *coords)

Implementation

void glRasterPos4xvOes(Pointer<Int32> coords) {
  final glRasterPos4xvOesAsFunction = _glRasterPos4xvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> coords)>>()
      .asFunction<void Function(Pointer<Int32> coords)>();
  return glRasterPos4xvOesAsFunction(coords);
}