(gl)
| 17907 | } |
| 17908 | |
| 17909 | function createPointShader(gl) { |
| 17910 | var shader = createShader(gl, pointShader.vertex, pointShader.fragment) |
| 17911 | shader.attributes.position.location = 0 |
| 17912 | shader.attributes.color.location = 2 |
| 17913 | shader.attributes.uv.location = 3 |
| 17914 | shader.attributes.pointSize.location = 4 |
| 17915 | return shader |
| 17916 | } |
| 17917 | |
| 17918 | function createPickShader(gl) { |
| 17919 | var shader = createShader(gl, pickShader.vertex, pickShader.fragment) |
no test coverage detected
searching dependent graphs…