summaryrefslogtreecommitdiff
path: root/tests/pm_pc8.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pm_pc8.c')
-rw-r--r--tests/pm_pc8.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/pm_pc8.c b/tests/pm_pc8.c
index bed69c57..0d04323c 100644
--- a/tests/pm_pc8.c
+++ b/tests/pm_pc8.c
@@ -269,21 +269,21 @@ static struct scanout_fb *create_fb(struct mode_set_data *data, int width,
int height)
{
struct scanout_fb *fb_info;
- struct kmstest_fb fb;
+ struct igt_fb fb;
cairo_t *cr;
fb_info = malloc(sizeof(struct scanout_fb));
igt_assert(fb_info);
- fb_info->handle = kmstest_create_fb(drm_fd, width, height,
+ fb_info->handle = igt_create_fb(drm_fd, width, height,
DRM_FORMAT_XRGB8888,
false, &fb);
fb_info->width = width;
fb_info->height = height;
fb_info->next = NULL;
- cr = kmstest_get_cairo_ctx(drm_fd, &fb);
- kmstest_paint_test_pattern(cr, width, height);
+ cr = igt_get_cairo_ctx(drm_fd, &fb);
+ igt_paint_test_pattern(cr, width, height);
cairo_destroy(cr);
return fb_info;