lkml.org 
[lkml]   [2004]   [Jan]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH for 2.4.x] rivafb & small 16 bit mode problem
Date
I have already send this once before Xmas but it probably got lost, so I'm 
sending it again:

There is a problem with 16 bit mode with rivafb. Colors are sometimes broken
(specialy under Midnight Commander). This small patch fixes it. I've been
using it for last months and it works without any problems.

Pawel 'Goldi' Goleniowski


--- linux/drivers/video/riva/accel.c 2003-12-22 22:46:27.000000000 +0100
+++ linux/drivers/video/riva/accel.c 2003-12-22 19:47:19.000000000 +0100
@@ -300,8 +300,8 @@

static inline void convert_bgcolor_16(u32 *col)
{
- *col = ((*col & 0x00007C00) << 9)
- | ((*col & 0x000003E0) << 6)
+ *col = ((*col & 0x0000F800) << 8)
+ | ((*col & 0x000007E0) << 5)
| ((*col & 0x0000001F) << 3)
| 0xFF000000;
}
\
 
 \ /
  Last update: 2005-03-22 13:59    [W:0.582 / U:0.384 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site