windowscodecs: Fix the SupportsTransparency flag value for various pixel formats.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7e9c178454
commit
4af1c0c246
|
@ -1775,7 +1775,7 @@ static struct regsvr_pixelformat const pixelformat_list[] = {
|
||||||
1, /* channel count */
|
1, /* channel count */
|
||||||
channel_masks_1bit,
|
channel_masks_1bit,
|
||||||
WICPixelFormatNumericRepresentationIndexed,
|
WICPixelFormatNumericRepresentationIndexed,
|
||||||
1
|
0
|
||||||
},
|
},
|
||||||
{ &GUID_WICPixelFormat2bppIndexed,
|
{ &GUID_WICPixelFormat2bppIndexed,
|
||||||
"The Wine Project",
|
"The Wine Project",
|
||||||
|
@ -1786,7 +1786,7 @@ static struct regsvr_pixelformat const pixelformat_list[] = {
|
||||||
1, /* channel count */
|
1, /* channel count */
|
||||||
channel_masks_2bit,
|
channel_masks_2bit,
|
||||||
WICPixelFormatNumericRepresentationIndexed,
|
WICPixelFormatNumericRepresentationIndexed,
|
||||||
1
|
0
|
||||||
},
|
},
|
||||||
{ &GUID_WICPixelFormat4bppIndexed,
|
{ &GUID_WICPixelFormat4bppIndexed,
|
||||||
"The Wine Project",
|
"The Wine Project",
|
||||||
|
@ -1797,7 +1797,7 @@ static struct regsvr_pixelformat const pixelformat_list[] = {
|
||||||
1, /* channel count */
|
1, /* channel count */
|
||||||
channel_masks_4bit,
|
channel_masks_4bit,
|
||||||
WICPixelFormatNumericRepresentationIndexed,
|
WICPixelFormatNumericRepresentationIndexed,
|
||||||
1
|
0
|
||||||
},
|
},
|
||||||
{ &GUID_WICPixelFormat8bppIndexed,
|
{ &GUID_WICPixelFormat8bppIndexed,
|
||||||
"The Wine Project",
|
"The Wine Project",
|
||||||
|
@ -1808,7 +1808,7 @@ static struct regsvr_pixelformat const pixelformat_list[] = {
|
||||||
1, /* channel count */
|
1, /* channel count */
|
||||||
channel_masks_8bit,
|
channel_masks_8bit,
|
||||||
WICPixelFormatNumericRepresentationIndexed,
|
WICPixelFormatNumericRepresentationIndexed,
|
||||||
1
|
0
|
||||||
},
|
},
|
||||||
{ &GUID_WICPixelFormatBlackWhite,
|
{ &GUID_WICPixelFormatBlackWhite,
|
||||||
"The Wine Project",
|
"The Wine Project",
|
||||||
|
@ -1995,7 +1995,7 @@ static struct regsvr_pixelformat const pixelformat_list[] = {
|
||||||
1, /* channel count */
|
1, /* channel count */
|
||||||
channel_masks_32bit,
|
channel_masks_32bit,
|
||||||
WICPixelFormatNumericRepresentationFloat,
|
WICPixelFormatNumericRepresentationFloat,
|
||||||
1
|
0
|
||||||
},
|
},
|
||||||
{ &GUID_WICPixelFormat48bppRGB,
|
{ &GUID_WICPixelFormat48bppRGB,
|
||||||
"The Wine Project",
|
"The Wine Project",
|
||||||
|
|
Loading…
Reference in New Issue