From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKKKC-00012K-5r for qemu-devel@nongnu.org; Wed, 30 Jan 2008 16:18:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKKK8-00011I-EJ for qemu-devel@nongnu.org; Wed, 30 Jan 2008 16:18:27 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKKK8-00011E-Bd for qemu-devel@nongnu.org; Wed, 30 Jan 2008 16:18:24 -0500 Received: from ug-out-1314.google.com ([66.249.92.170]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JKKK8-00078I-1K for qemu-devel@nongnu.org; Wed, 30 Jan 2008 16:18:24 -0500 Received: by ug-out-1314.google.com with SMTP id m2so380825uge.4 for ; Wed, 30 Jan 2008 13:18:22 -0800 (PST) Message-ID: Date: Wed, 30 Jan 2008 22:18:21 +0100 From: "andrzej zaborowski" Subject: Re: [Qemu-devel] [patch] cocoa.m - Core Graphics support In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <13FD6BC9-36B9-4911-82D4-739AC5E10E66@kberg.ch> <4E3770A5-4564-49DF-B868-511F5935F7CD@csgraf.de> <40275543-3906-421D-B6DB-13B1BA72E35B@kberg.ch> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On 30/01/2008, Johannes Schindelin wrote: > Hi, > > On Wed, 30 Jan 2008, Mike Kronenberg wrote: > > > Offtoppic about updated regions in Windows: While testing with > > Quartzdebug, I realized, that qemu is updating always the whole > > screenwidth even if only the mouse is moved... is this a qemu problem, > > or is this the default windows behaviour? > > As far as I remember, this is a QEmu "problem". It only marks lines as > dirty, not pixels. In addition lines are not marked dirty because they have a dirty pixel in them but because they have a pixel in a dirty page. That means more lines are updated than those containing dirty pixels. Cheers