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

Method hasSynchronization

core/src/processing/opengl/PGL.java:2244–2250  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2242
2243
2244 protected boolean hasSynchronization() {
2245 int[] version = getGLVersion();
2246 if (isES()) {
2247 return version[0] >= 3;
2248 }
2249 return (version[0] > 3) || (version[0] == 3 && version[1] >= 2);
2250 }
2251
2252
2253 protected boolean hasPBOs() {

Callers 2

saveImplMethod · 0.80
AsyncPixelReaderMethod · 0.80

Calls 2

getGLVersionMethod · 0.95
isESMethod · 0.95

Tested by

no test coverage detected