Compare commits

...

2 commits

Author SHA1 Message Date
AlexeyLushnikov
03d4aff689 Merge branch 'emfdc_Add_support_of_monochrome_bitmap_to_get_bitmap_info' into 'master'
gdi32: Add support of monochrome bitmap to get_bitmap_info()

See merge request wine/wine!6782
2024-11-16 11:37:54 +00:00
AlexeyLushnikov
31ff08c6f6 gdi32: Add support of monochrome bitmap to get_bitmap_info() 2024-11-06 16:20:56 +03:00

View file

@ -201,6 +201,10 @@ static UINT get_bitmap_info( HDC *hdc, HBITMAP *bitmap, BITMAPINFO *info )
((DWORD *)dib_info->bmiColors)[1] = 0x00ff00;
((DWORD *)dib_info->bmiColors)[2] = 0x0000ff;
break;
case 1:
((DWORD *)dib_info->bmiColors)[0] = 0x000000;
((DWORD *)dib_info->bmiColors)[1] = 0xffffff;
break;
default:
if (dib_info->bmiHeader.biBitCount > 8) break;
if (!(palette = GetCurrentObject( *hdc, OBJ_PAL ))) return FALSE;