mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
in fbEvenStipple.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-04-06 Keith Packard <keithp@keithp.com>
|
||||
|
||||
* fb/fbstipple.c: (fbEvenStipple):
|
||||
Coverity #333, #334 - eliminate unncessary test
|
||||
for always true condition in fbEvenStipple.
|
||||
|
||||
2006-04-06 Adam Jackson <ajax@freedesktop.org>
|
||||
|
||||
* hw/xfree86/parser/Monitor.c:
|
||||
|
||||
@@ -148,9 +148,8 @@ fbEvenStipple (FbBits *dst,
|
||||
/*
|
||||
* Get pointer to stipple mask array for this depth
|
||||
*/
|
||||
fbBits = 0; /* unused */
|
||||
if (pixelsPerDst <= 8)
|
||||
fbBits = fbStippleTable[pixelsPerDst];
|
||||
/* fbStippleTable covers all valid bpp (4,8,16,32) */
|
||||
fbBits = fbStippleTable[pixelsPerDst];
|
||||
|
||||
while (height--)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user