mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
gdiplus: Make GdipTranslateLineTransform stub lie and return Ok.
This commit is contained in:
parent
f6dae487aa
commit
8f073bf4c7
@ -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 New Issue
Block a user