Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f1417780
Commit
f1417780
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Dec 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add traces for values of newly-created brushes.
parent
5dbbe5a7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
brush.c
dlls/gdiplus/brush.c
+12
-0
No files found.
dlls/gdiplus/brush.c
View file @
f1417780
...
...
@@ -174,6 +174,7 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
return
NotImplemented
;
}
TRACE
(
"<-- %p
\n
"
,
*
clone
);
return
Ok
;
}
...
...
@@ -290,6 +291,7 @@ GpStatus WINGDIPAPI GdipCreateHatchBrush(HatchStyle hatchstyle, ARGB forecol, AR
(
*
brush
)
->
forecol
=
forecol
;
(
*
brush
)
->
backcol
=
backcol
;
(
*
brush
)
->
hatchstyle
=
hatchstyle
;
TRACE
(
"<-- %p
\n
"
,
*
brush
);
}
else
{
...
...
@@ -370,6 +372,8 @@ GpStatus WINGDIPAPI GdipCreateLineBrush(GDIPCONST GpPointF* startpoint,
(
*
line
)
->
pblendpos
=
NULL
;
(
*
line
)
->
pblendcount
=
0
;
TRACE
(
"<-- %p
\n
"
,
*
line
);
return
Ok
;
}
...
...
@@ -544,6 +548,8 @@ GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points,
(
*
grad
)
->
focus
.
X
=
0
.
0
;
(
*
grad
)
->
focus
.
Y
=
0
.
0
;
TRACE
(
"<-- %p
\n
"
,
*
grad
);
return
Ok
;
}
...
...
@@ -634,6 +640,8 @@ GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath* path,
(
*
grad
)
->
focus
.
X
=
0
.
0
;
(
*
grad
)
->
focus
.
Y
=
0
.
0
;
TRACE
(
"<-- %p
\n
"
,
*
grad
);
return
Ok
;
}
...
...
@@ -660,6 +668,8 @@ GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf)
(
*
sf
)
->
color
=
color
;
(
*
sf
)
->
bmp
=
ARGB2BMP
(
color
);
TRACE
(
"<-- %p
\n
"
,
*
sf
);
return
Ok
;
}
...
...
@@ -854,6 +864,8 @@ GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage *image,
GdipFree
(
dibits
);
GdipFree
(
buff
);
TRACE
(
"<-- %p
\n
"
,
*
texture
);
return
Ok
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment