Commit 641a6e6c authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mscms: Handle more bitmap formats.

parent d2fa9a75
...@@ -66,6 +66,8 @@ static DWORD from_bmformat( BMFORMAT format ) ...@@ -66,6 +66,8 @@ static DWORD from_bmformat( BMFORMAT format )
case BM_RGBTRIPLETS: return TYPE_RGB_8; case BM_RGBTRIPLETS: return TYPE_RGB_8;
case BM_BGRTRIPLETS: return TYPE_BGR_8; case BM_BGRTRIPLETS: return TYPE_BGR_8;
case BM_GRAY: return TYPE_GRAY_8; case BM_GRAY: return TYPE_GRAY_8;
case BM_xRGBQUADS: return TYPE_ARGB_8;
case BM_xBGRQUADS: return TYPE_ABGR_8;
default: default:
if (quietfixme == 0) if (quietfixme == 0)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment