()
| 164 | protected int shininessLoc; |
| 165 | |
| 166 | public PShader() { |
| 167 | parent = null; |
| 168 | pgl = null; |
| 169 | context = -1; |
| 170 | |
| 171 | this.vertexURL = null; |
| 172 | this.fragmentURL = null; |
| 173 | this.vertexFilename = null; |
| 174 | this.fragmentFilename = null; |
| 175 | |
| 176 | glProgram = 0; |
| 177 | glVertex = 0; |
| 178 | glFragment = 0; |
| 179 | |
| 180 | intBuffer = PGL.allocateIntBuffer(1); |
| 181 | floatBuffer = PGL.allocateFloatBuffer(1); |
| 182 | |
| 183 | bound = false; |
| 184 | |
| 185 | type = -1; |
| 186 | } |
| 187 | |
| 188 | |
| 189 | public PShader(PApplet parent) { |
nothing calls this directly
no test coverage detected