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
7a9f6abd
Commit
7a9f6abd
authored
Feb 29, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Test SetSurroundColors with fewer colors than points on the path.
parent
a58249cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
brush.c
dlls/gdiplus/tests/brush.c
+10
-0
No files found.
dlls/gdiplus/tests/brush.c
View file @
7a9f6abd
...
...
@@ -866,6 +866,16 @@ static void test_gradientsurroundcolorcount(void)
todo_wine
expect
(
0x0000ff00
,
color
[
1
]);
expect
(
0xdeadbeef
,
color
[
2
]);
count
=
1
;
status
=
GdipSetPathGradientSurroundColorsWithCount
(
grad
,
color
,
&
count
);
todo_wine
expect
(
Ok
,
status
);
expect
(
1
,
count
);
count
=
0
;
status
=
GdipSetPathGradientSurroundColorsWithCount
(
grad
,
color
,
&
count
);
todo_wine
expect
(
InvalidParameter
,
status
);
expect
(
0
,
count
);
GdipDeleteBrush
((
GpBrush
*
)
grad
);
status
=
GdipCreatePathGradient
(
getbounds_ptf
,
3
,
WrapModeClamp
,
&
grad
);
...
...
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