From patchwork Wed Oct 3 21:15:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?TWFyZWsgT2zFocOhaw==?= X-Patchwork-Id: 1543401 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 78D913FD9C for ; Wed, 3 Oct 2012 21:16:12 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 54D809F3A9 for ; Wed, 3 Oct 2012 14:16:12 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-we0-f177.google.com (mail-we0-f177.google.com [74.125.82.177]) by gabe.freedesktop.org (Postfix) with ESMTP id 2B8A59E7D5 for ; Wed, 3 Oct 2012 14:16:01 -0700 (PDT) Received: by weyu50 with SMTP id u50so4702027wey.36 for ; Wed, 03 Oct 2012 14:16:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=n1KKZYPtGPHM6sgRAOLbUvre0Z3ctnkAcaRhzCZi/io=; b=DLW0hsG+mT4851VhNTBdL7nqOa074w92XmMhEAd5Qyw9Y0Xz+DtGn9dg7aOq+Ic7tm pwi868RIKrRNPaqAybCKp1CB7KA1A8Uq+JxFbp1DkBvD9Ht4fJQTI2gh2hkKBQYxJPCg 4dK2HAt5OmJItj2a6TbImC6xB3fJgvzp7fKL4+0dxfh3Mhpt2nPKrHpQH0SaTJjLxzFG k+mq+Gq0202c6/WHUPKOxl4MfQTDJLa18iSiNYd89tzjU4W/Y0QojMJxfI02K2D0A4m4 Dn5K16c3bNB21+7W3Z8C06nm/zhA8qLwB/meqGVP3FCxtkjTWn/CcIzO5PIVForBTLPy L6pw== Received: by 10.180.93.8 with SMTP id cq8mr7546249wib.16.1349298959960; Wed, 03 Oct 2012 14:15:59 -0700 (PDT) Received: from localhost.localdomain (static-84-242-70-218.net.upcbroadband.cz. [84.242.70.218]) by mx.google.com with ESMTPS id bn7sm10622648wib.8.2012.10.03.14.15.58 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 03 Oct 2012 14:15:58 -0700 (PDT) From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= To: dri-devel@lists.freedesktop.org Subject: [PATCH 1/2] radeon: don't force stencil tile split to 0 Date: Wed, 3 Oct 2012 23:15:48 +0200 Message-Id: <1349298949-22154-1-git-send-email-maraeo@gmail.com> X-Mailer: git-send-email 1.7.9.5 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org --- radeon/radeon_surface.c | 2 -- 1 file changed, 2 deletions(-) Reviewed-by: Alex Deucher diff --git a/radeon/radeon_surface.c b/radeon/radeon_surface.c index 03b1c5d..c62cbf9 100644 --- a/radeon/radeon_surface.c +++ b/radeon/radeon_surface.c @@ -797,7 +797,6 @@ static int eg_surface_init(struct radeon_surface_manager *surf_man, } surf->stencil_offset = 0; - surf->stencil_tile_split = 0; /* check tiling mode */ switch (mode) { @@ -1059,7 +1058,6 @@ static int si_surface_init(struct radeon_surface_manager *surf_man, } surf->stencil_offset = 0; - surf->stencil_tile_split = 0; /* check tiling mode */ switch (mode) {