[igt-dev] [PATCH v2 3/6] tests/kms_ccs: Fix small aux stride subtest
Imre Deak
imre.deak at intel.com
Mon Sep 6 18:17:33 UTC 2021
Use the correct CCS plane stride for the small aux stride subtest.
Signed-off-by: Imre Deak <imre.deak at intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila at gmail.com>
---
tests/kms_ccs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index c87812d20..81cb4ca5b 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -307,7 +307,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
if (fb_flags & FB_SMALL_AUX_STRIDE) {
igt_skip_on_f(width <= 1024,
"FB already has the smallest possible stride\n");
- f.pitches[index] = ALIGN(f.pitches[1]/2, 128);
+ f.pitches[index] = ALIGN(f.pitches[index] / 2, 128);
}
if (fb_flags & FB_ZERO_AUX_STRIDE)
--
2.27.0
More information about the igt-dev
mailing list