glRasterPos2f function
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);
}