[igt-dev] [PATCH i-g-t 3/6] tests/kms_ccs: Fix small aux stride subtest

Imre Deak imre.deak at intel.com
Fri Aug 27 14:57:53 UTC 2021


Use the correct CCS plane stride for the small aux stride subtest.

Signed-off-by: Imre Deak <imre.deak at intel.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 5bc50b4bb..52252c633 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