Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c9f8f41d
Commit
c9f8f41d
authored
Nov 14, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus/tests: Add a test for bezier data returned by GdipGetRegionData.
parent
4b256191
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
2 deletions
+65
-2
region.c
dlls/gdiplus/tests/region.c
+65
-2
No files found.
dlls/gdiplus/tests/region.c
View file @
c9f8f41d
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
#define expect(expected, got) ok((got) == (expected), "Expected %.8x, got %.8x\n", (expected), (got))
#define expect(expected, got) ok((got) == (expected), "Expected %.8x, got %.8x\n", (expected), (got))
#define expectf_(expected, got, precision) ok(fabs((expected) - (got)) < (precision), "Expected %f, got %f\n", (expected), (got))
#define expectf_(expected, got, precision) ok(fabs((expected) - (got)) < (precision), "Expected %f, got %f\n", (expected), (got))
#define expectf(expected, got) expectf_((expected), (got), 0.00
0
1)
#define expectf(expected, got) expectf_((expected), (got), 0.001)
#define expect_magic(value) ok(*(value) == RGNDATA_MAGIC || *(value) == RGNDATA_MAGIC2, "Expected a known magic value, got %8x\n", *(value))
#define expect_magic(value) ok(*(value) == RGNDATA_MAGIC || *(value) == RGNDATA_MAGIC2, "Expected a known magic value, got %8x\n", *(value))
#define expect_dword(value, expected) expect((expected), *(value))
#define expect_dword(value, expected) expect((expected), *(value))
...
@@ -108,7 +108,7 @@ static void test_getregiondata(void)
...
@@ -108,7 +108,7 @@ static void test_getregiondata(void)
GpRegion
*
region
,
*
region2
;
GpRegion
*
region
,
*
region2
;
RegionDataPoint
*
point
;
RegionDataPoint
*
point
;
UINT
needed
;
UINT
needed
;
DWORD
buf
[
100
];
DWORD
buf
[
256
];
GpRect
rect
;
GpRect
rect
;
GpPath
*
path
;
GpPath
*
path
;
GpMatrix
*
matrix
;
GpMatrix
*
matrix
;
...
@@ -674,6 +674,69 @@ static void test_getregiondata(void)
...
@@ -674,6 +674,69 @@ static void test_getregiondata(void)
expect
(
Ok
,
status
);
expect
(
Ok
,
status
);
status
=
GdipDeleteRegion
(
region
);
status
=
GdipDeleteRegion
(
region
);
expect
(
Ok
,
status
);
expect
(
Ok
,
status
);
/* Test beziers */
GdipCreatePath
(
FillModeAlternate
,
&
path
);
/* Exactly 90 degrees */
status
=
GdipAddPathArc
(
path
,
100
.
0
,
100
.
0
,
500
.
0
,
700
.
0
,
0
.
0
,
90
.
0
);
expect
(
Ok
,
status
);
/* Over 90 degrees */
status
=
GdipAddPathArc
(
path
,
100
.
0
,
100
.
0
,
500
.
0
,
700
.
0
,
0
.
0
,
100
.
0
);
expect
(
Ok
,
status
);
status
=
GdipCreateRegionPath
(
path
,
&
region
);
ok
(
status
==
Ok
,
"status %08x
\n
"
,
status
);
needed
=
0
;
status
=
GdipGetRegionDataSize
(
region
,
&
needed
);
ok
(
status
==
Ok
,
"status %08x
\n
"
,
status
);
expect
(
136
,
needed
);
memset
(
buf
,
0xee
,
sizeof
(
buf
));
needed
=
0
;
status
=
GdipGetRegionData
(
region
,
(
BYTE
*
)
buf
,
sizeof
(
buf
),
&
needed
);
ok
(
status
==
Ok
,
"status %08x
\n
"
,
status
);
expect
(
136
,
needed
);
expect_dword
(
buf
,
128
);
trace
(
"buf[1] = %08x
\n
"
,
buf
[
1
]);
expect_magic
(
buf
+
2
);
expect_dword
(
buf
+
3
,
0
);
expect_dword
(
buf
+
4
,
RGNDATA_PATH
);
expect_dword
(
buf
+
5
,
112
);
expect_magic
(
buf
+
6
);
expect_dword
(
buf
+
7
,
11
);
/* flags 0 means that a path is an array of FLOATs */
expect_dword
(
buf
+
8
,
0
);
expect_float
(
buf
+
9
,
600
.
0
);
expect_float
(
buf
+
10
,
450
.
0
);
expect_float
(
buf
+
11
,
600
.
0
);
expect_float
(
buf
+
12
,
643
.
299561
);
expect_float
(
buf
+
13
,
488
.
0711
98
);
expect_float
(
buf
+
14
,
800
.
0
);
expect_float
(
buf
+
15
,
350
.
0
);
expect_float
(
buf
+
16
,
800
.
0
);
expect_float
(
buf
+
17
,
600
.
0
);
expect_float
(
buf
+
18
,
450
.
0
);
expect_float
(
buf
+
19
,
600
.
0
);
expect_float
(
buf
+
20
,
643
.
299622
);
expect_float
(
buf
+
21
,
488
.
071167
);
expect_float
(
buf
+
22
,
800
.
0
);
expect_float
(
buf
+
23
,
350
.
0
);
expect_float
(
buf
+
24
,
800
.
0
);
expect_float
(
buf
+
25
,
329
.
807129
);
expect_float
(
buf
+
26
,
800
.
0
);
expect_float
(
buf
+
27
,
309
.
688568
);
expect_float
(
buf
+
28
,
796
.
574890
);
expect_float
(
buf
+
29
,
290
.
084167
);
expect_float
(
buf
+
30
,
789
.
799561
);
expect_dword
(
buf
+
31
,
0x03030300
);
expect_dword
(
buf
+
32
,
0x03030301
);
ok
(
*
(
buf
+
33
)
==
0x00030303
/* before win7 */
||
*
(
buf
+
33
)
==
0x43030303
/* 32-bit win7 */
||
*
(
buf
+
33
)
==
0x4c030303
/* 64-bit win7 */
,
"expected 0x00030303 or 0x43030303 or 0x4c030303 got %08x
\n
"
,
*
(
buf
+
33
));
expect_dword
(
buf
+
34
,
0xeeeeeeee
);
status
=
GdipDeletePath
(
path
);
expect
(
Ok
,
status
);
status
=
GdipDeleteRegion
(
region
);
expect
(
Ok
,
status
);
}
}
static
void
test_isinfinite
(
void
)
static
void
test_isinfinite
(
void
)
...
...
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