From: Imre Deak Date: Mon, 29 Jul 2013 14:19:58 +0000 (+0300) Subject: lib: export drm_format_to_bpp X-Git-Tag: intel-gpu-tools-1.4~277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24de8bac80e61b9b8dbfd2b3b834f15a13e506e3;p=profile%2Fextras%2Fintel-gpu-tools.git lib: export drm_format_to_bpp Needed by the next patch. Signed-off-by: Imre Deak --- diff --git a/lib/drmtest.c b/lib/drmtest.c index 083191d..29ebaf7 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1071,7 +1071,7 @@ unsigned int kmstest_create_fb(int fd, int width, int height, int bpp, return fb->fb_id; } -static uint32_t drm_format_to_bpp(uint32_t drm_format) +uint32_t drm_format_to_bpp(uint32_t drm_format) { struct format_desc_struct *f; diff --git a/lib/drmtest.h b/lib/drmtest.h index 6db639f..70dbcc4 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -166,6 +166,8 @@ const char *kmstest_encoder_type_str(int type); const char *kmstest_connector_status_str(int type); const char *kmstest_connector_type_str(int type); +uint32_t drm_format_to_bpp(uint32_t drm_format); + inline static void _do_or_die(const char *function, int line, int ret) { if (ret == 0)