gdiplus: Limit fixme output.
This commit is contained in:
parent
45c24bbef3
commit
b0acdb8389
|
@ -1200,20 +1200,26 @@ GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix
|
|||
|
||||
GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!graphics)
|
||||
return InvalidParameter;
|
||||
|
||||
FIXME("graphics state not implemented\n");
|
||||
if(!(calls++))
|
||||
FIXME("graphics state not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!graphics || !state)
|
||||
return InvalidParameter;
|
||||
|
||||
FIXME("graphics state not implemented\n");
|
||||
if(!(calls++))
|
||||
FIXME("graphics state not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
|
|
@ -29,6 +29,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
|||
|
||||
static DWORD gdip_to_gdi_dash(GpDashStyle dash)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
switch(dash){
|
||||
case DashStyleSolid:
|
||||
return PS_SOLID;
|
||||
|
@ -41,7 +43,8 @@ static DWORD gdip_to_gdi_dash(GpDashStyle dash)
|
|||
case DashStyleDashDotDot:
|
||||
return PS_DASHDOTDOT;
|
||||
case DashStyleCustom:
|
||||
FIXME("DashStyleCustom not implemented\n");
|
||||
if(!(calls++))
|
||||
FIXME("DashStyleCustom not implemented\n");
|
||||
return PS_SOLID;
|
||||
default:
|
||||
ERR("Not a member of GpDashStyle enumeration\n");
|
||||
|
|
Loading…
Reference in New Issue