glRasterPos3xvOes function opengl_glext

void glRasterPos3xvOes(
  1. Pointer<Int32> coords
)
GLAPI void APIENTRY glRasterPos3xvOES (const GLfixed *coords)

Implementation

void glRasterPos3xvOes(Pointer<Int32> coords) {
  final glRasterPos3xvOesAsFunction = _glRasterPos3xvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> coords)>>()
      .asFunction<void Function(Pointer<Int32> coords)>();
  return glRasterPos3xvOesAsFunction(coords);
}