From c46051337b972f8b5a302afb6f603df06fea527d Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Tue, 12 Mar 2019 14:53:32 +0100 Subject: lib/igt_fb: better format printing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Steal if from kms_plane.c and put it into igt_fb.h Also tiny bikeshed to remove the space, so it fits more tidily into the usual name1=value1, name2=value2 style printing. v2: Rebase v3: It better compile :-/ Reviewed-by: Ville Syrjälä (v1) Signed-off-by: Daniel Vetter --- lib/igt_fb.c | 6 ++++-- lib/igt_fb.h | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/igt_fb.c b/lib/igt_fb.c index e696c863..6a9a9341 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -1146,8 +1146,10 @@ igt_create_fb_with_bo_size(int fd, int width, int height, fb->size = bo_size; - igt_debug("%s(width=%d, height=%d, format=0x%x, modifier=0x%"PRIx64", size=%"PRIu64")\n", - __func__, width, height, format, modifier, bo_size); + igt_debug("%s(width=%d, height=%d, format=" IGT_FORMAT_FMT + ", modifier=0x%"PRIx64", size=%"PRIu64")\n", + __func__, width, height, IGT_FORMAT_ARGS(format), modifier, + bo_size); create_bo_for_fb(fb); igt_assert(fb->gem_handle > 0); diff --git a/lib/igt_fb.h b/lib/igt_fb.h index 7667579b..ba22bd66 100644 --- a/lib/igt_fb.h +++ b/lib/igt_fb.h @@ -44,6 +44,10 @@ */ #define IGT_FORMAT_FLOAT fourcc_code('I', 'G', 'F', 'x') +#define IGT_FORMAT_FMT "%c%c%c%c(0x%08x)" +#define IGT_FORMAT_ARGS(f) ((f) >> 0) & 0xff, ((f) >> 8) & 0xff, \ + ((f) >> 16) & 0xff, ((f) >> 24) & 0xff, (f) + /** * igt_fb_t: * @fb_id: KMS ID of the framebuffer -- cgit v1.2.3