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

Method hasPBOs

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

Source from the content-addressed store, hash-verified

2251
2252
2253 protected boolean hasPBOs() {
2254 int[] version = getGLVersion();
2255 if (isES()) {
2256 return version[0] >= 3;
2257 }
2258 return (version[0] > 2) || (version[0] == 2 && version[1] >= 1);
2259 }
2260
2261
2262 protected boolean hasReadBuffer() {

Callers 2

saveImplMethod · 0.80
AsyncPixelReaderMethod · 0.80

Calls 2

getGLVersionMethod · 0.95
isESMethod · 0.95

Tested by

no test coverage detected