glRasterPos3f function
GLAPI void GLAPIENTRY glRasterPos3f (GLfloat x, GLfloat y, GLfloat z)
Implementation
void glRasterPos3f(double x, double y, double z) {
final glRasterPos3fLookupFunction = libGL.lookupFunction<
Void Function(Float x, Float y, Float z),
void Function(double x, double y, double z)>('glRasterPos3f');
return glRasterPos3fLookupFunction(x, y, z);
}