summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSwati Sharma <swati2.sharma@intel.com>2022-05-23 13:39:31 +0530
committerSwati Sharma <swati2.sharma@intel.com>2022-05-24 21:46:45 +0530
commit0919aef71990b65adc81ead2f218cf0349102562 (patch)
treedcc01aae42f32d0836150bdc178c9708aee49d55
parent8ba806e7e1963d7f5681415d158c77126855e81f (diff)
tests/kms_plane_scaling: Fix indentation
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
-rw-r--r--tests/kms_plane_scaling.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 301cf4e0..a1a883b3 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -279,13 +279,13 @@ static void test_scaler_with_modifier_pipe(data_t *d,
for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
uint64_t modifier = modifiers[i];
- if (igt_plane_has_format_mod(plane, format, modifier))
- check_scaling_pipe_plane_rot(d, plane,
- format, modifier,
- width, height,
- is_upscale,
- pipe, output,
- IGT_ROTATION_0);
+ if (igt_plane_has_format_mod(plane, format, modifier))
+ check_scaling_pipe_plane_rot(d, plane,
+ format, modifier,
+ width, height,
+ is_upscale,
+ pipe, output,
+ IGT_ROTATION_0);
}
}
}
@@ -312,13 +312,13 @@ static void test_scaler_with_rotation_pipe(data_t *d,
for (int i = 0; i < ARRAY_SIZE(rotations); i++) {
igt_rotation_t rot = rotations[i];
- if (igt_plane_has_rotation(plane, rot))
- check_scaling_pipe_plane_rot(d, plane,
- format, modifier,
- width, height,
- is_upscale,
- pipe, output,
- rot);
+ if (igt_plane_has_rotation(plane, rot))
+ check_scaling_pipe_plane_rot(d, plane,
+ format, modifier,
+ width, height,
+ is_upscale,
+ pipe, output,
+ rot);
}
}
}