polygonOffset method

void polygonOffset(
  1. double factor,
  2. double units
)

Implementation

void polygonOffset(double factor, double units){
  startCheck('polygonOffset');
  gl.glPolygonOffset(factor, units);
  checkError('polygonOffset');
}