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

Method endRaw

core/src/processing/core/PGraphics.java:8213–8225  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8211
8212
8213 public void endRaw() { // ignore
8214 if (raw != null) {
8215 // for 3D, need to flush any geometry that's been stored for sorting
8216 // (particularly if the ENABLE_DEPTH_SORT hint is set)
8217 flush();
8218
8219 // just like beginDraw, this will have to be called because
8220 // endDraw() will be happening outside of draw()
8221 raw.endDraw();
8222 raw.dispose();
8223 raw = null;
8224 }
8225 }
8226
8227
8228 public boolean haveRaw() { // ignore

Callers

nothing calls this directly

Calls 3

flushMethod · 0.95
endDrawMethod · 0.45
disposeMethod · 0.45

Tested by

no test coverage detected