gdiplus: Add fixmes for unimplemented imageattributes features.
This commit is contained in:
parent
8b2543b750
commit
ede103c699
@ -2080,6 +2080,14 @@ GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image
|
|||||||
|
|
||||||
if (imageAttributes)
|
if (imageAttributes)
|
||||||
{
|
{
|
||||||
|
if (imageAttributes->colorkeys[ColorAdjustTypeBitmap].enabled ||
|
||||||
|
imageAttributes->colorkeys[ColorAdjustTypeDefault].enabled)
|
||||||
|
{
|
||||||
|
static int fixme;
|
||||||
|
if (!fixme++)
|
||||||
|
FIXME("Color keying not implemented\n");
|
||||||
|
}
|
||||||
|
|
||||||
if (imageAttributes->colorremaptables[ColorAdjustTypeBitmap].enabled ||
|
if (imageAttributes->colorremaptables[ColorAdjustTypeBitmap].enabled ||
|
||||||
imageAttributes->colorremaptables[ColorAdjustTypeDefault].enabled)
|
imageAttributes->colorremaptables[ColorAdjustTypeDefault].enabled)
|
||||||
{
|
{
|
||||||
@ -2105,6 +2113,22 @@ GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (imageAttributes->colormatrices[ColorAdjustTypeBitmap].enabled ||
|
||||||
|
imageAttributes->colormatrices[ColorAdjustTypeDefault].enabled)
|
||||||
|
{
|
||||||
|
static int fixme;
|
||||||
|
if (!fixme++)
|
||||||
|
FIXME("Color transforms not implemented\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (imageAttributes->gamma_enabled[ColorAdjustTypeBitmap] ||
|
||||||
|
imageAttributes->gamma_enabled[ColorAdjustTypeDefault])
|
||||||
|
{
|
||||||
|
static int fixme;
|
||||||
|
if (!fixme++)
|
||||||
|
FIXME("Gamma adjustment not implemented\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
|
stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user