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

Method finish

core/src/processing/opengl/FrameBuffer.java:195–204  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

193 }
194
195 public void finish() {
196 if (noDepth) {
197 // No need to clear depth buffer because depth testing was disabled.
198 if (pg.getHint(ENABLE_DEPTH_TEST)) {
199 pgl.enable(PGL.DEPTH_TEST);
200 } else {
201 pgl.disable(PGL.DEPTH_TEST);
202 }
203 }
204 }
205
206 public void readPixels() {
207 if (pixelBuffer == null) createPixelBuffer();

Callers

nothing calls this directly

Calls 3

getHintMethod · 0.80
enableMethod · 0.45
disableMethod · 0.45

Tested by

no test coverage detected