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
d49510e7
Commit
d49510e7
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Dec 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add traces to unimplemented functions in brush.c.
parent
7ded3d83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
brush.c
dlls/gdiplus/brush.c
+16
-0
No files found.
dlls/gdiplus/brush.c
View file @
d49510e7
...
...
@@ -1160,6 +1160,8 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
{
static
int
calls
;
TRACE
(
"(%p,%p,%p)
\n
"
,
grad
,
argb
,
count
);
if
(
!
grad
||
!
argb
||
!
count
||
(
*
count
<
grad
->
pathdata
.
Count
))
return
InvalidParameter
;
...
...
@@ -1415,6 +1417,8 @@ GpStatus WINGDIPAPI GdipSetPathGradientBlend(GpPathGradient *brush, GDIPCONST RE
{
static
int
calls
;
TRACE
(
"(%p,%p,%p,%i)
\n
"
,
brush
,
blend
,
pos
,
count
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -1507,6 +1511,8 @@ GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
{
static
int
calls
;
TRACE
(
"(%p,%0.2f,%0.2f)
\n
"
,
grad
,
focus
,
scale
);
if
(
!
grad
||
focus
<
0
.
0
||
focus
>
1
.
0
||
scale
<
0
.
0
||
scale
>
1
.
0
)
return
InvalidParameter
;
...
...
@@ -1521,6 +1527,8 @@ GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient
{
static
int
calls
;
TRACE
(
"(%p,%p,%p)
\n
"
,
grad
,
argb
,
count
);
if
(
!
grad
||
!
argb
||
!
count
||
(
*
count
<=
0
)
||
(
*
count
>
grad
->
pathdata
.
Count
))
return
InvalidParameter
;
...
...
@@ -1734,6 +1742,8 @@ GpStatus WINGDIPAPI GdipResetLineTransform(GpLineGradient *brush)
{
static
int
calls
;
TRACE
(
"(%p)
\n
"
,
brush
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -1745,6 +1755,8 @@ GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush,
{
static
int
calls
;
TRACE
(
"(%p,%p)
\n
"
,
brush
,
matrix
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -1756,6 +1768,8 @@ GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL
{
static
int
calls
;
TRACE
(
"(%p,%0.2f,%0.2f,%u)
\n
"
,
brush
,
sx
,
sy
,
order
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -1823,6 +1837,8 @@ GpStatus WINGDIPAPI GdipRotateLineTransform(GpLineGradient* brush,
{
static
int
calls
;
TRACE
(
"(%p,%0.2f,%u)
\n
"
,
brush
,
angle
,
order
);
if
(
!
brush
)
return
InvalidParameter
;
...
...
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