Commit 30574dd6 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

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

parent c008984a
......@@ -122,6 +122,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesWrapMode(GpImageAttributes *imageAttr,
{
static int calls;
TRACE("(%p,%u,%08x,%i)\n", imageAttr, wrap, argb, clamp);
if(!imageAttr)
return InvalidParameter;
......@@ -136,6 +138,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesCachedBackground(GpImageAttributes *im
{
static int calls;
TRACE("(%p,%i)\n", imageAttr, enableFlag);
if(!(calls++))
FIXME("not implemented\n");
......@@ -147,6 +151,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesGamma(GpImageAttributes *imageAttr,
{
static int calls;
TRACE("(%p,%u,%i,%0.2f)\n", imageAttr, type, enableFlag, gamma);
if(!(calls++))
FIXME("not implemented\n");
......@@ -158,6 +164,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesNoOp(GpImageAttributes *imageAttr,
{
static int calls;
TRACE("(%p,%u,%i)\n", imageAttr, type, enableFlag);
if(!(calls++))
FIXME("not implemented\n");
......@@ -169,6 +177,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannel(GpImageAttributes *image
{
static int calls;
TRACE("(%p,%u,%i,%x)\n", imageAttr, type, enableFlag, channelFlags);
if(!(calls++))
FIXME("not implemented\n");
......@@ -181,6 +191,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannelColorProfile(GpImageAttri
{
static int calls;
TRACE("(%p,%u,%i,%s)\n", imageAttr, type, enableFlag, debugstr_w(colorProfileFilename));
if(!(calls++))
FIXME("not implemented\n");
......@@ -193,6 +205,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesRemapTable(GpImageAttributes *imageAtt
{
static int calls;
TRACE("(%p,%u,%i,%u,%p)\n", imageAttr, type, enableFlag, mapSize, map);
if(!(calls++))
FIXME("not implemented\n");
......@@ -204,6 +218,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr
{
static int calls;
TRACE("(%p,%u,%i,%0.2f)\n", imageAttr, type, enableFlag, threshold);
if(!(calls++))
FIXME("not implemented\n");
......@@ -215,6 +231,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesToIdentity(GpImageAttributes *imageAtt
{
static int calls;
TRACE("(%p,%u)\n", imageAttr, type);
if(!(calls++))
FIXME("not implemented\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment