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
3a6b53fe
Commit
3a6b53fe
authored
May 12, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
May 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Add the ID2D1StrokeStyle interface.
parent
eaac54e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
7 deletions
+57
-7
d2d1.idl
include/d2d1.idl
+57
-7
No files found.
include/d2d1.idl
View file @
3a6b53fe
...
...
@@ -59,13 +59,6 @@ typedef enum D2D1_FIGURE_BEGIN
D2D1_FIGURE_BEGIN_FORCE_DWORD
=
0
xffffffff
}
D2D1_FIGURE_BEGIN
;
typedef
struct
D2D1_BEZIER_SEGMENT
{
D2D1_POINT_2F
point1
;
D2D1_POINT_2F
point2
;
D2D1_POINT_2F
point3
;
}
D2D1_BEZIER_SEGMENT
;
typedef
enum
D2D1_FIGURE_END
{
D2D1_FIGURE_END_OPEN
=
0
,
...
...
@@ -73,6 +66,42 @@ typedef enum D2D1_FIGURE_END
D2D1_FIGURE_END_FORCE_DWORD
=
0
xffffffff
}
D2D1_FIGURE_END
;
typedef
enum
D2D1_CAP_STYLE
{
D2D1_CAP_STYLE_FLAT
=
0
,
D2D1_CAP_STYLE_SQUARE
=
1
,
D2D1_CAP_STYLE_ROUND
=
2
,
D2D1_CAP_STYLE_TRIANGLE
=
3
,
D2D1_CAP_STYLE_FORCE_DWORD
=
0
xffffffff
,
}
D2D1_CAP_STYLE
;
typedef
enum
D2D1_LINE_JOIN
{
D2D1_LINE_JOIN_MITER
=
0
,
D2D1_LINE_JOIN_BEVEL
=
1
,
D2D1_LINE_JOIN_ROUND
=
2
,
D2D1_LINE_JOIN_MITER_OR_BEVEL
=
3
,
D2D1_LINE_JOIN_FORCE_DWORD
=
0
xffffffff
,
}
D2D1_LINE_JOIN
;
typedef
enum
D2D1_DASH_STYLE
{
D2D1_DASH_STYLE_SOLID
=
0
,
D2D1_DASH_STYLE_DASH
=
1
,
D2D1_DASH_STYLE_DOT
=
2
,
D2D1_DASH_STYLE_DASH_DOT
=
3
,
D2D1_DASH_STYLE_DASH_DOT_DOT
=
4
,
D2D1_DASH_STYLE_CUSTOM
=
5
,
D2D1_DASH_STYLE_FORCE_DWORD
=
0
xffffffff
,
}
D2D1_DASH_STYLE
;
typedef
struct
D2D1_BEZIER_SEGMENT
{
D2D1_POINT_2F
point1
;
D2D1_POINT_2F
point2
;
D2D1_POINT_2F
point3
;
}
D2D1_BEZIER_SEGMENT
;
typedef
struct
D2D1_FACTORY_OPTIONS
{
D2D1_DEBUG_LEVEL
debugLevel
;
...
...
@@ -95,6 +124,27 @@ interface ID2D1Resource : IUnknown
[
local
,
object
,
uuid
(
2
cd9069d
-
12
e2
-
11
dc
-
9
fed
-
001143
a055f9
)
]
interface
ID2D1StrokeStyle
:
ID2D1Resource
{
D2D1_CAP_STYLE
GetStartCap
()
;
D2D1_CAP_STYLE
GetEndCap
()
;
D2D1_CAP_STYLE
GetDashCap
()
;
float
GetMiterLimit
()
;
D2D1_LINE_JOIN
GetLineJoin
()
;
float
GetDashOffset
()
;
D2D1_DASH_STYLE
GetDashStyle
()
;
UINT32
GetDashesCount
()
;
void
GetDashes
(
[
out
,
size_is
(
count
)
]
float
*
dashes
,
[
in
]
UINT32
count
)
;
}
[
local
,
object
,
uuid
(
2
cd9069e
-
12
e2
-
11
dc
-
9
fed
-
001143
a055f9
)
]
interface
ID2D1SimplifiedGeometrySink
:
IUnknown
...
...
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