| 67 | |
| 68 | // Utility class for drawing. |
| 69 | class FullscreenQuad { |
| 70 | constructor(gl) { |
| 71 | this.squareVerticesBuffer_ = gl.createBuffer(); |
| 72 | gl.bindBuffer(gl.ARRAY_BUFFER, this.squareVerticesBuffer_); |
nothing calls this directly
no outgoing calls
no test coverage detected