(gl)
| 17923 | } |
| 17924 | |
| 17925 | function createPointPickShader(gl) { |
| 17926 | var shader = createShader(gl, pointPickShader.vertex, pointPickShader.fragment) |
| 17927 | shader.attributes.position.location = 0 |
| 17928 | shader.attributes.id.location = 1 |
| 17929 | shader.attributes.pointSize.location = 4 |
| 17930 | return shader |
| 17931 | } |
| 17932 | |
| 17933 | function createContourShader(gl) { |
| 17934 | var shader = createShader(gl, contourShader.vertex, contourShader.fragment) |
no test coverage detected
searching dependent graphs…