From 12ad227efa86507fc116087ea0072ba89a65565c Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Tue, 22 Jun 2021 16:46:48 +0300 Subject: 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 Reviewed-by: Paul Elder Reviewed-by: Laurent Pinchart Signed-off-by: Laurent Pinchart --- src/qcam/assets/shader/bayer_8.frag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qcam') diff --git a/src/qcam/assets/shader/bayer_8.frag b/src/qcam/assets/shader/bayer_8.frag index 707e76ed..74a6322f 100644 --- a/src/qcam/assets/shader/bayer_8.frag +++ b/src/qcam/assets/shader/bayer_8.frag @@ -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) -- cgit v1.2.1