From patchwork Wed Feb 10 18:59:21 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corbin Simpson X-Patchwork-Id: 78552 Received: from lists.sourceforge.net (lists.sourceforge.net [216.34.181.88]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o1AJ1EeM003117 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 10 Feb 2010 19:01:50 GMT Received: from localhost ([127.0.0.1] helo=sfs-ml-3.v29.ch3.sourceforge.com) by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1NfHmb-0005zq-1S; Wed, 10 Feb 2010 18:59:29 +0000 Received: from sfi-mx-2.v28.ch3.sourceforge.com ([172.29.28.122] helo=mx.sourceforge.net) by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1NfHma-0005zk-8P for dri-devel@lists.sourceforge.net; Wed, 10 Feb 2010 18:59:28 +0000 Received-SPF: pass (sfi-mx-2.v28.ch3.sourceforge.com: domain of gmail.com designates 209.85.222.187 as permitted sender) client-ip=209.85.222.187; envelope-from=mostawesomedude@gmail.com; helo=mail-pz0-f187.google.com; Received: from mail-pz0-f187.google.com ([209.85.222.187]) by sfi-mx-2.v28.ch3.sourceforge.com with esmtp (Exim 4.69) id 1NfHmZ-0001Jo-DM for dri-devel@lists.sourceforge.net; Wed, 10 Feb 2010 18:59:28 +0000 Received: by pzk17 with SMTP id 17so319924pzk.4 for ; Wed, 10 Feb 2010 10:59:21 -0800 (PST) MIME-Version: 1.0 Received: by 10.142.61.24 with SMTP id j24mr413554wfa.153.1265828361062; Wed, 10 Feb 2010 10:59:21 -0800 (PST) Date: Wed, 10 Feb 2010 10:59:21 -0800 Message-ID: Subject: [PATCH] glean: Disable dithering for clipFlat. From: Corbin Simpson To: DRI-Development X-Spam-Score: -1.3 (-) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for sender-domain -0.0 SPF_PASS SPF: sender matches SPF record -0.0 DKIM_VERIFIED Domain Keys Identified Mail: signature passes verification 0.0 DKIM_SIGNED Domain Keys Identified Mail: message has a signature 0.2 AWL AWL: From: address is in the auto white-list X-Headers-End: 1NfHmZ-0001Jo-DM X-BeenThere: dri-devel@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.sourceforge.net X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Wed, 10 Feb 2010 19:01:50 +0000 (UTC) diff --git a/tests/glean/tclipflat.cpp b/tests/glean/tclipflat.cpp index a2798c0..fe47825 100644 --- a/tests/glean/tclipflat.cpp +++ b/tests/glean/tclipflat.cpp @@ -188,6 +188,8 @@ ClipFlatResult::ClipFlatResult() void ClipFlatTest::setup(void) { + glDisable(GL_DITHER); + glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(-1.25, 1.25, -1.25, 1.25, -1, 1);