gdiplus: Add traces to unimplemented functions in imageattributes.c.

This commit is contained in:
Vincent Povirk 2009-12-18 16:19:34 -06:00 committed by Alexandre Julliard
parent c008984a01
commit 30574dd6be
1 changed files with 18 additions and 0 deletions

View File

@ -122,6 +122,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesWrapMode(GpImageAttributes *imageAttr,
{ {
static int calls; static int calls;
TRACE("(%p,%u,%08x,%i)\n", imageAttr, wrap, argb, clamp);
if(!imageAttr) if(!imageAttr)
return InvalidParameter; return InvalidParameter;
@ -136,6 +138,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesCachedBackground(GpImageAttributes *im
{ {
static int calls; static int calls;
TRACE("(%p,%i)\n", imageAttr, enableFlag);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -147,6 +151,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesGamma(GpImageAttributes *imageAttr,
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i,%0.2f)\n", imageAttr, type, enableFlag, gamma);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -158,6 +164,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesNoOp(GpImageAttributes *imageAttr,
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i)\n", imageAttr, type, enableFlag);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -169,6 +177,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannel(GpImageAttributes *image
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i,%x)\n", imageAttr, type, enableFlag, channelFlags);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -181,6 +191,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannelColorProfile(GpImageAttri
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i,%s)\n", imageAttr, type, enableFlag, debugstr_w(colorProfileFilename));
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -193,6 +205,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesRemapTable(GpImageAttributes *imageAtt
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i,%u,%p)\n", imageAttr, type, enableFlag, mapSize, map);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -204,6 +218,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr
{ {
static int calls; static int calls;
TRACE("(%p,%u,%i,%0.2f)\n", imageAttr, type, enableFlag, threshold);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");
@ -215,6 +231,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesToIdentity(GpImageAttributes *imageAtt
{ {
static int calls; static int calls;
TRACE("(%p,%u)\n", imageAttr, type);
if(!(calls++)) if(!(calls++))
FIXME("not implemented\n"); FIXME("not implemented\n");