gdiplus: Add TRACE(..) to CustomLineCap.
This commit is contained in:
parent
cf5562338a
commit
0f87374a17
|
@ -33,6 +33,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
||||||
GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap* from,
|
GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap* from,
|
||||||
GpCustomLineCap** to)
|
GpCustomLineCap** to)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %p)\n", from, to);
|
||||||
|
|
||||||
if(!from || !to)
|
if(!from || !to)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -108,6 +110,8 @@ GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath* fillPath, GpPath* strokePath
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap *customCap)
|
GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap *customCap)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p)\n", customCap);
|
||||||
|
|
||||||
if(!customCap)
|
if(!customCap)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -121,6 +125,8 @@ GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap *customCap)
|
||||||
GpStatus WINGDIPAPI GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
|
GpStatus WINGDIPAPI GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
|
||||||
GpLineJoin* lineJoin)
|
GpLineJoin* lineJoin)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %p)\n", customCap, lineJoin);
|
||||||
|
|
||||||
if(!customCap || !lineJoin)
|
if(!customCap || !lineJoin)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -132,6 +138,8 @@ GpStatus WINGDIPAPI GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
|
||||||
GpStatus WINGDIPAPI GdipGetCustomLineCapWidthScale(GpCustomLineCap* custom,
|
GpStatus WINGDIPAPI GdipGetCustomLineCapWidthScale(GpCustomLineCap* custom,
|
||||||
REAL* widthScale)
|
REAL* widthScale)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %p)\n", custom, widthScale);
|
||||||
|
|
||||||
if(!custom || !widthScale)
|
if(!custom || !widthScale)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -168,6 +176,8 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseCap(GpCustomLineCap* custom,
|
||||||
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseInset(GpCustomLineCap* custom,
|
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseInset(GpCustomLineCap* custom,
|
||||||
REAL* inset)
|
REAL* inset)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %p)\n", custom, inset);
|
||||||
|
|
||||||
if(!custom || !inset)
|
if(!custom || !inset)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -191,6 +201,8 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom,
|
||||||
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
|
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
|
||||||
GpLineJoin join)
|
GpLineJoin join)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %d)\n", custom, join);
|
||||||
|
|
||||||
if(!custom)
|
if(!custom)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
@ -212,6 +224,8 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapWidthScale(GpCustomLineCap* custom,
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseCap(GpCustomLineCap *customCap, GpLineCap *baseCap)
|
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseCap(GpCustomLineCap *customCap, GpLineCap *baseCap)
|
||||||
{
|
{
|
||||||
|
TRACE("(%p, %p)\n", customCap, baseCap);
|
||||||
|
|
||||||
if(!customCap || !baseCap)
|
if(!customCap || !baseCap)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue