glRasterPos2f function

void glRasterPos2f(
  1. double x,
  2. double y
)
GLAPI void GLAPIENTRY glRasterPos2f (GLfloat x, GLfloat y)

Implementation

void glRasterPos2f(double x, double y) {
  final glRasterPos2fLookupFunction = libGL.lookupFunction<
      Void Function(Float x, Float y),
      void Function(double x, double y)>('glRasterPos2f');
  return glRasterPos2fLookupFunction(x, y);
}