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
44691eef
Commit
44691eef
authored
Jul 12, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Jul 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipAddPathPath test.
parent
c41a77a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
graphicspath.c
dlls/gdiplus/tests/graphicspath.c
+51
-0
No files found.
dlls/gdiplus/tests/graphicspath.c
View file @
44691eef
...
...
@@ -383,6 +383,56 @@ static void test_worldbounds(void)
expectf
(
945
.
0
,
bounds
.
Height
);
}
static
path_test_t
pathpath_path
[]
=
{
{
600
.
00
,
450
.
00
,
PathPointTypeStart
,
0
,
0
},
/*0*/
{
600
.
00
,
643
.
30
,
PathPointTypeBezier
,
0
,
0
},
/*1*/
{
488
.
07
,
800
.
00
,
PathPointTypeBezier
,
0
,
0
},
/*2*/
{
350
.
00
,
800
.
00
,
PathPointTypeBezier
,
0
,
0
},
/*3*/
{
319
.
61
,
797
.
40
,
PathPointTypeStart
,
0
,
0
},
/*4*/
{
182
.
56
,
773
.
90
,
PathPointTypeBezier
,
0
,
0
},
/*5*/
{
85
.
07
,
599
.
31
,
PathPointTypeBezier
,
0
,
0
},
/*6*/
{
101
.
85
,
407
.
45
,
PathPointTypeBezier
,
0
,
0
},
/*7*/
{
102
.
54
,
399
.
66
,
PathPointTypeBezier
,
0
,
0
},
/*8*/
{
103
.
40
,
391
.
91
,
PathPointTypeBezier
,
0
,
0
},
/*9*/
{
104
.
46
,
384
.
21
,
PathPointTypeBezier
,
0
,
0
},
/*10*/
{
409
.
92
,
110
.
20
,
PathPointTypeLine
,
0
,
0
},
/*11*/
{
543
.
96
,
156
.
53
,
PathPointTypeBezier
,
0
,
0
},
/*12*/
{
625
.
80
,
346
.
22
,
PathPointTypeBezier
,
0
,
0
},
/*13*/
{
592
.
71
,
533
.
88
,
PathPointTypeBezier
,
0
,
0
},
/*14*/
{
592
.
47
,
535
.
28
,
PathPointTypeBezier
,
0
,
0
},
/*15*/
{
592
.
22
,
536
.
67
,
PathPointTypeBezier
,
0
,
0
},
/*16*/
{
591
.
96
,
538
.
06
,
PathPointTypeBezier
,
0
,
0
},
/*17*/
{
319
.
61
,
797
.
40
,
PathPointTypeLine
,
0
,
0
},
/*18*/
{
182
.
56
,
773
.
90
,
PathPointTypeBezier
,
0
,
0
},
/*19*/
{
85
.
07
,
599
.
31
,
PathPointTypeBezier
,
0
,
0
},
/*20*/
{
101
.
85
,
407
.
45
,
PathPointTypeBezier
,
0
,
0
},
/*21*/
{
102
.
54
,
399
.
66
,
PathPointTypeBezier
,
0
,
0
},
/*22*/
{
103
.
40
,
391
.
91
,
PathPointTypeBezier
,
0
,
0
},
/*23*/
{
104
.
46
,
384
.
21
,
PathPointTypeBezier
,
0
,
0
}
/*24*/
};
static
void
test_pathpath
(
void
)
{
GpStatus
status
;
GpPath
*
path1
,
*
path2
;
GdipCreatePath
(
FillModeAlternate
,
&
path2
);
GdipAddPathArc
(
path2
,
100
.
0
,
100
.
0
,
500
.
0
,
700
.
0
,
95
.
0
,
100
.
0
);
GdipCreatePath
(
FillModeAlternate
,
&
path1
);
GdipAddPathArc
(
path1
,
100
.
0
,
100
.
0
,
500
.
0
,
700
.
0
,
0
.
0
,
90
.
0
);
status
=
GdipAddPathPath
(
path1
,
path2
,
FALSE
);
expect
(
Ok
,
status
);
GdipAddPathArc
(
path1
,
100
.
0
,
100
.
0
,
500
.
0
,
700
.
0
,
-
80
.
0
,
100
.
0
);
status
=
GdipAddPathPath
(
path1
,
path2
,
TRUE
);
expect
(
Ok
,
status
);
ok_path
(
path1
,
pathpath_path
,
sizeof
(
pathpath_path
)
/
sizeof
(
path_test_t
),
FALSE
);
GdipDeletePath
(
path1
);
GdipDeletePath
(
path2
);
}
START_TEST
(
graphicspath
)
{
struct
GdiplusStartupInput
gdiplusStartupInput
;
...
...
@@ -399,6 +449,7 @@ START_TEST(graphicspath)
test_line2
();
test_arc
();
test_worldbounds
();
test_pathpath
();
GdiplusShutdown
(
gdiplusToken
);
}
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