glRasterPos2xvOes function opengl_glext

void glRasterPos2xvOes(
  1. Pointer<Int32> coords
)
GLAPI void APIENTRY glRasterPos2xvOES (const GLfixed *coords)

Implementation

void glRasterPos2xvOes(Pointer<Int32> coords) {
  final glRasterPos2xvOesAsFunction = _glRasterPos2xvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> coords)>>()
      .asFunction<void Function(Pointer<Int32> coords)>();
  return glRasterPos2xvOesAsFunction(coords);
}