glRasterPos3f function opengl
GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z )
Implementation
void glRasterPos3f(double x, double y, double z) {
final glRasterPos3fAsFunction = _glRasterPos3f
.cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
.asFunction<void Function(double x, double y, double z)>();
return glRasterPos3fAsFunction(x, y, z);
}