[PATCH i-g-t 2/3] lib/igt_chamelium: Fix CRC calculation in compared_frames_dump()

Swati Sharma swati2.sharma at intel.com
Fri Mar 28 18:10:54 UTC 2025


The CRC calculation in compared_frames_dump is incorrectly
using the reference frame instead of the captured frame when
capture_crc is NULL.

Fix this by correctly passing the captured frame to
chamelium_do_calculate_fb_crc().

Signed-off-by: Swati Sharma <swati2.sharma at intel.com>
---
 lib/igt_chamelium.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index c86773898..a96e36b5b 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -1878,7 +1878,7 @@ static void compared_frames_dump(cairo_surface_t *reference,
 	}
 
 	if (!capture_crc) {
-		chamelium_do_calculate_fb_crc(reference, &local_capture_crc);
+		chamelium_do_calculate_fb_crc(capture, &local_capture_crc);
 		capture_crc = &local_capture_crc;
 	}
 
-- 
2.25.1



More information about the igt-dev mailing list