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

Method compiled

core/src/processing/opengl/PGL.java:2058–2062  ·  view source on GitHub ↗
(int shader)

Source from the content-addressed store, hash-verified

2056
2057
2058 protected boolean compiled(int shader) {
2059 intBuffer.rewind();
2060 getShaderiv(shader, COMPILE_STATUS, intBuffer);
2061 return intBuffer.get(0) == 0 ? false : true;
2062 }
2063
2064
2065 protected boolean linked(int program) {

Callers 1

createShaderMethod · 0.95

Calls 2

getShaderivMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected