diff options
Diffstat (limited to 'tests/kms_render.c')
-rw-r--r-- | tests/kms_render.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/kms_render.c b/tests/kms_render.c index 6e70aa91..1759eaa3 100644 --- a/tests/kms_render.c +++ b/tests/kms_render.c @@ -125,12 +125,12 @@ static int test_format(const char *test_name, width = mode->hdisplay; height = mode->vdisplay; - if (!igt_create_fb(drm_fd, width, height, format, I915_TILING_NONE, - &fb[0])) + if (!igt_create_fb(drm_fd, width, height, format, + LOCAL_DRM_FORMAT_MOD_NONE, &fb[0])) goto err1; - if (!igt_create_fb(drm_fd, width, height, format, I915_TILING_NONE, - &fb[1])) + if (!igt_create_fb(drm_fd, width, height, format, + LOCAL_DRM_FORMAT_MOD_NONE, &fb[1])) goto err2; if (drmModeSetCrtc(drm_fd, cconf->crtc->crtc_id, fb[0].fb_id, |