summaryrefslogtreecommitdiff
path: root/tests/kms_rotation_crc.c
diff options
context:
space:
mode:
authorMelissa Wen <melissa.srw@gmail.com>2020-07-06 12:50:59 -0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2020-07-07 17:57:46 +0300
commit90254c14f4e68bec9d4a114ddf039075f3c1a30c (patch)
treee50702df13c197cb7713cb6df9a6d38ffe12335e /tests/kms_rotation_crc.c
parent5da80efbc7a2d5bd7b30c0f9eb4b5d001c99b558 (diff)
lib/igt_fb: remove extra parameters from igt_put_cairo_ctx
The function igt_put_cairo_ctx currently requires three parameters, but only one of them is used in it. This patch removes the useless parameters, making the code more readable and cohesive. It also applies the change to all occurrences of the function in the code. Signed-off-by: Melissa Wen <melissa.srw@gmail.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'tests/kms_rotation_crc.c')
-rw-r--r--tests/kms_rotation_crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 164eade8..ffcc2cc2 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -148,7 +148,7 @@ paint_squares(data_t *data, igt_rotation_t rotation,
igt_paint_color(cr, 0, h / 2, w / 2, h / 2, RGB_COLOR(bl));
igt_paint_color(cr, w / 2, h / 2, w / 2, h / 2, RGB_COLOR(br));
- igt_put_cairo_ctx(data->gfx_fd, fb, cr);
+ igt_put_cairo_ctx(cr);
}
static void remove_fbs(data_t *data)