mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
gdiplus: Make GdipTranslateLineTransform stub lie and return Ok.
This commit is contained in:
parent
f6dae487aa
commit
8f073bf4c7
1 changed files with 7 additions and 2 deletions
|
@ -2017,9 +2017,14 @@ GpStatus WINGDIPAPI GdipMultiplyLineTransform(GpLineGradient *brush,
|
|||
GpStatus WINGDIPAPI GdipTranslateLineTransform(GpLineGradient* brush,
|
||||
REAL dx, REAL dy, GpMatrixOrder order)
|
||||
{
|
||||
FIXME("stub: %p %f %f %d\n", brush, dx, dy, order);
|
||||
static int calls;
|
||||
|
||||
return NotImplemented;
|
||||
TRACE("(%p,%f,%f,%d)\n", brush, dx, dy, order);
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
Loading…
Reference in a new issue