glPolygonOffset function opengl

void glPolygonOffset(
  1. double factor,
  2. double units
)
GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units )

Implementation

void glPolygonOffset(double factor, double units) {
  final glPolygonOffsetAsFunction = _glPolygonOffset
      .cast<NativeFunction<Void Function(Float factor, Float units)>>()
      .asFunction<void Function(double factor, double units)>();
  return glPolygonOffsetAsFunction(factor, units);
}