[igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
Sowmya Kaparthi
sowmyax.kaparthi at intel.com
Mon Sep 7 10:28:46 UTC 2020
Depending on pixel format minimum width and height can be as
high as 20. Set width and height to 20. Remove is_planar_yuv_format,
no longer used.
Cc: Ausmus, James <james.ausmus at intel.com>
Signed-off-by: Sowmya Kaparthi <sowmyax.kaparthi at intel.com>
---
tests/kms_plane_scaling.c | 17 +----------------
1 file changed, 1 insertion(+), 16 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 19087286..ecd2c2e3 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -62,19 +62,6 @@ static int get_num_scalers(data_t* d, enum pipe pipe)
return 1;
}
-static bool is_planar_yuv_format(uint32_t pixelformat)
-{
- switch (pixelformat) {
- case DRM_FORMAT_NV12:
- case DRM_FORMAT_P010:
- case DRM_FORMAT_P012:
- case DRM_FORMAT_P016:
- return true;
- default:
- return false;
- }
-}
-
static void cleanup_fbs(data_t *data)
{
int i;
@@ -147,9 +134,7 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
mode = igt_output_get_mode(output);
/* create buffer in the range of min and max source side limit.*/
- width = height = 8;
- if (is_i915_device(d->drm_fd) && is_planar_yuv_format(pixel_format))
- width = height = 16;
+ width = height = 20;
igt_create_color_fb(display->drm_fd, width, height,
pixel_format, tiling, 0.0, 1.0, 0.0, &d->fb[0]);
igt_plane_set_fb(plane, &d->fb[0]);
--
2.25.1
More information about the igt-dev
mailing list