[igt-dev] [PATCH v7 03/14] fb: convert: Remove swizzle from the arguments
Maxime Ripard
maxime.ripard at bootlin.com
Tue Sep 11 08:47:30 UTC 2018
Since it can be inferred from the framebuffer that is already given as an
argument, it is redundant and can be removed.
Reviewed-by: Eric Anholt <eric at anholt.net>
Signed-off-by: Maxime Ripard <maxime.ripard at bootlin.com>
---
lib/igt_fb.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index dd180c6c8016..66bdc02a0ce7 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -1647,8 +1647,7 @@ static const unsigned char *yuyv_swizzle(uint32_t format)
}
}
-static void convert_yuyv_to_rgb24(struct igt_fb *fb, struct fb_convert_blit_upload *blit,
- const unsigned char swz[4])
+static void convert_yuyv_to_rgb24(struct igt_fb *fb, struct fb_convert_blit_upload *blit)
{
int i, j;
const uint8_t *yuyv;
@@ -1657,6 +1656,7 @@ static void convert_yuyv_to_rgb24(struct igt_fb *fb, struct fb_convert_blit_uplo
uint8_t *buf = malloc(blit->linear.size);
struct igt_mat4 m = igt_ycbcr_to_rgb_matrix(fb->color_encoding,
fb->color_range);
+ const unsigned char *swz = yuyv_swizzle(fb->drm_format);
/*
* Reading from the BO is awfully slow because of lack of read caching,
@@ -1706,8 +1706,7 @@ static void convert_yuyv_to_rgb24(struct igt_fb *fb, struct fb_convert_blit_uplo
free(buf);
}
-static void convert_rgb24_to_yuyv(struct igt_fb *fb, struct fb_convert_blit_upload *blit,
- const unsigned char swz[4])
+static void convert_rgb24_to_yuyv(struct igt_fb *fb, struct fb_convert_blit_upload *blit)
{
int i, j;
uint8_t *yuyv = blit->linear.map;
@@ -1716,6 +1715,7 @@ static void convert_rgb24_to_yuyv(struct igt_fb *fb, struct fb_convert_blit_uplo
unsigned yuyv_stride = blit->linear.stride;
struct igt_mat4 m = igt_rgb_to_ycbcr_matrix(fb->color_encoding,
fb->color_range);
+ const unsigned char *swz = yuyv_swizzle(fb->drm_format);
igt_assert_f(fb->drm_format == DRM_FORMAT_YUYV ||
fb->drm_format == DRM_FORMAT_YVYU ||
@@ -1773,7 +1773,7 @@ static void destroy_cairo_surface__convert(void *arg)
case DRM_FORMAT_YVYU:
case DRM_FORMAT_UYVY:
case DRM_FORMAT_VYUY:
- convert_rgb24_to_yuyv(fb, blit, yuyv_swizzle(fb->drm_format));
+ convert_rgb24_to_yuyv(fb, blit);
break;
default:
igt_assert_f(false, "Conversion not implemented for formats 0x%x\n",
@@ -1832,7 +1832,7 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
case DRM_FORMAT_YVYU:
case DRM_FORMAT_UYVY:
case DRM_FORMAT_VYUY:
- convert_yuyv_to_rgb24(fb, blit, yuyv_swizzle(fb->drm_format));
+ convert_yuyv_to_rgb24(fb, blit);
break;
default:
igt_assert_f(false, "Conversion not implemented for formats 0x%x\n",
--
git-series 0.9.1
More information about the igt-dev
mailing list