qcam: viewfinder_gl: Fix wrong comment in bayer_8.frag
Fetching into value[2] corresponds to E0, and fetching into value[3] - to F0. The fetch()-es themselves are correct, but the comments were not. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
831b3f8132
commit
12ad227efa
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ void main(void) {
|
|||
vec4 value = vec4(
|
||||
fetch(center.x, yCoord[0]), // ( 0,-2)
|
||||
fetch(center.x, yCoord[1]), // ( 0,-1)
|
||||
fetch(xCoord[0], center.y), // (-1, 0)
|
||||
fetch(xCoord[1], center.y)); // (-2, 0)
|
||||
fetch(xCoord[0], center.y), // (-2, 0)
|
||||
fetch(xCoord[1], center.y)); // (-1, 0)
|
||||
|
||||
vec4 temp = vec4(
|
||||
fetch(center.x, yCoord[3]), // ( 0, 2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue