mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
gdi32: Improve support of bitmaps without a color table in PutImage.
This commit is contained in:
parent
50d53928e0
commit
c2784e08fc
@ -871,16 +871,25 @@ done:
|
||||
|
||||
static BOOL matching_color_info( const dib_info *dib, const BITMAPINFO *info )
|
||||
{
|
||||
const RGBQUAD *color_table = info->bmiColors;
|
||||
|
||||
switch (info->bmiHeader.biBitCount)
|
||||
{
|
||||
case 1:
|
||||
case 4:
|
||||
case 8:
|
||||
{
|
||||
RGBQUAD *color_table = (RGBQUAD *)((char *)info + info->bmiHeader.biSize);
|
||||
if (dib->color_table_size != info->bmiHeader.biClrUsed) return FALSE;
|
||||
return !memcmp( color_table, dib->color_table, dib->color_table_size * sizeof(RGBQUAD) );
|
||||
}
|
||||
|
||||
case 4:
|
||||
case 8:
|
||||
if (!info->bmiHeader.biClrUsed)
|
||||
{
|
||||
if (!dib->color_table_size) return TRUE;
|
||||
if (dib->color_table_size != 1 << info->bmiHeader.biBitCount) return FALSE;
|
||||
color_table = get_default_color_table( info->bmiHeader.biBitCount );
|
||||
}
|
||||
else if (dib->color_table_size != info->bmiHeader.biClrUsed) return FALSE;
|
||||
|
||||
return !memcmp( color_table, dib->color_table, dib->color_table_size * sizeof(RGBQUAD) );
|
||||
|
||||
case 16:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user