UNPKG

183 BJavaScriptView Raw
1export default function readPixel (gl, x, y) {
2 var pixel = new Uint8Array(4)
3 gl.readPixels(x, y, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, pixel)
4 return [pixel[0], pixel[1], pixel[2]]
5}