MCPcopy Create free account
hub / github.com/benfry/processing4 / GLUCallback

Class GLUCallback

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected