[igt-dev] [PATCH i-g-t v3] tests/kms_rotation_crc-MPO subtets-pixel format mixing and tiling on different planes.
Ananya Sharma
ananya.sharma at intel.com
Wed Dec 15 09:21:21 UTC 2021
Already existing pixel format RGB565, XRGB8888, NV12. Addition of new pixel formats.
Signed-off-by: Ananya Sharma <ananya.sharma at intel.com>
---
tests/kms_rotation_crc.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 1497120c..0963db41 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -751,8 +751,7 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
* no need to redo comparison image and
* just use stored crc.
*/
- if (p[0].format != DRM_FORMAT_NV12 &&
- p[1].format != DRM_FORMAT_NV12 &&
+ if (!igt_format_is_yuv_semiplanar(p[0].format) && !igt_format_is_yuv_semiplanar(p[1].format) &&
crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)].frame != 0) {
retcrc_sw = crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)];
have_crc = true;
@@ -819,7 +818,7 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
flipsw,
&retcrc_sw);
- if (p[0].format != DRM_FORMAT_NV12 && p[1].format != DRM_FORMAT_NV12)
+ if (!igt_format_is_yuv_semiplanar(p[0].format) && !igt_format_is_yuv_semiplanar(p[1].format))
crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)]
= retcrc_sw;
}
--
2.25.1
More information about the igt-dev
mailing list