(target, color)
| 1317 | } |
| 1318 | |
| 1319 | function drawColor (target, color) { |
| 1320 | colorProgram.bind(); |
| 1321 | gl.uniform4f(colorProgram.uniforms.color, color.r, color.g, color.b, 1); |
| 1322 | blit(target); |
| 1323 | } |
| 1324 | |
| 1325 | function drawCheckerboard (target) { |
| 1326 | checkerboardProgram.bind(); |