From mboxrd@z Thu Jan 1 00:00:00 1970 From: Damien Lespiau Subject: [PATCH 11/16] kms_render: Adjust to the new igt_create.*fb() API Date: Thu, 21 Aug 2014 14:59:15 +0100 Message-ID: <1408629560-27834-12-git-send-email-damien.lespiau@intel.com> References: <1408629560-27834-1-git-send-email-damien.lespiau@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTP id 19F2B6E389 for ; Thu, 21 Aug 2014 06:59:32 -0700 (PDT) In-Reply-To: <1408629560-27834-1-git-send-email-damien.lespiau@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" To: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org Signed-off-by: Damien Lespiau --- tests/kms_render.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/kms_render.c b/tests/kms_render.c index f457929..db2ed45 100644 --- a/tests/kms_render.c +++ b/tests/kms_render.c @@ -125,10 +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, false, &fb[0])) + if (!igt_create_fb(drm_fd, width, height, format, I915_TILING_NONE, + &fb[0])) goto err1; - if (!igt_create_fb(drm_fd, width, height, format, false, &fb[1])) + if (!igt_create_fb(drm_fd, width, height, format, I915_TILING_NONE, + &fb[1])) goto err2; if (drmModeSetCrtc(drm_fd, cconf->crtc->crtc_id, fb[0].fb_id, -- 1.8.3.1