(vert,frag)
| 18 | this.useProgram(this.program); |
| 19 | }, |
| 20 | createProgram(vert,frag){ |
| 21 | let program=WebGL.createProgram(this.gl,vert,frag); |
| 22 | return program; |
| 23 | }, |
| 24 | useProgram(program){ |
| 25 | this.program=program; |
| 26 | this.gl.useProgram(program); |
nothing calls this directly
no outgoing calls
no test coverage detected