Signed-off-by: Damien Lespiau <damien.lesp...@intel.com>
---
 tests/kms_pipe_crc_basic.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index c4abdf7..5727b61 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -127,8 +127,13 @@ test_read_crc_for_output(data_t *data, int pipe, 
igt_output_t *output,
        int c, j;
 
        for (c = 0; c < ARRAY_SIZE(colors); c++) {
+               char *crc_str;
+
                igt_output_set_pipe(output, pipe);
 
+               igt_debug("Clearing the fb with color (%.02lf,%.02lf,%.02lf)\n",
+                         colors[c].r, colors[c].g, colors[c].b);
+
                mode = igt_output_get_mode(output);
                igt_create_color_fb(data->drm_fd,
                                        mode->hdisplay, mode->vdisplay,
@@ -162,6 +167,10 @@ test_read_crc_for_output(data_t *data, int pipe, 
igt_output_t *output,
                 */
                colors[c].crc = crcs[0];
 
+               crc_str = igt_crc_to_string(&crcs[0]);
+               igt_debug("CRC for this fb: %s\n", crc_str);
+               free(crc_str);
+
                /*
                 * make sure the CRC of this fb is different from the ones of
                 * previous fbs
-- 
1.8.3.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to