MCPcopy Index your code
hub / github.com/processing/processing / GLUCallback

Class GLUCallback

core/src/processing/opengl/PJOGL.java:664–690  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662 }
663
664 protected class GLUCallback extends GLUtessellatorCallbackAdapter {
665 @Override
666 public void begin(int type) {
667 callback.begin(type);
668 }
669
670 @Override
671 public void end() {
672 callback.end();
673 }
674
675 @Override
676 public void vertex(Object data) {
677 callback.vertex(data);
678 }
679
680 @Override
681 public void combine(double[] coords, Object[] data,
682 float[] weight, Object[] outData) {
683 callback.combine(coords, data, weight, outData);
684 }
685
686 @Override
687 public void error(int errnum) {
688 callback.error(errnum);
689 }
690 }
691 }
692
693

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected