gdiplus: Add traces for values of newly-created linecaps.
This commit is contained in:
parent
f141778003
commit
d5fffdd0c4
|
@ -57,6 +57,8 @@ GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap* from,
|
||||||
* sizeof(PointF));
|
* sizeof(PointF));
|
||||||
memcpy((*to)->pathdata.Types, from->pathdata.Types, from->pathdata.Count);
|
memcpy((*to)->pathdata.Types, from->pathdata.Types, from->pathdata.Count);
|
||||||
|
|
||||||
|
TRACE("<-- %p\n", *to);
|
||||||
|
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,6 +107,8 @@ GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath* fillPath, GpPath* strokePath
|
||||||
(*customCap)->join = LineJoinMiter;
|
(*customCap)->join = LineJoinMiter;
|
||||||
(*customCap)->scale = 1.0;
|
(*customCap)->scale = 1.0;
|
||||||
|
|
||||||
|
TRACE("<-- %p\n", *customCap);
|
||||||
|
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue