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
a4677f86
Commit
a4677f86
authored
May 15, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
May 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Add the ID2D1SolidColorBrush interface.
parent
d156bf03
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
d2d1.idl
include/d2d1.idl
+14
-0
d2dbasetypes.h
include/d2dbasetypes.h
+13
-0
No files found.
include/d2d1.idl
View file @
a4677f86
...
...
@@ -32,6 +32,7 @@ typedef UINT64 D2D1_TAG;
typedef
D2D_SIZE_U
D2D1_SIZE_U
;
typedef
D2D_POINT_2U
D2D1_POINT_2U
;
typedef
D2D_RECT_U
D2D1_RECT_U
;
typedef
D2D_COLOR_F
D2D1_COLOR_F
;
enum
{
...
...
@@ -616,5 +617,18 @@ interface ID2D1BitmapBrush : ID2D1Brush
)
;
}
[
local
,
object
,
uuid
(
2
cd906a9
-
12
e2
-
11
dc
-
9
fed
-
001143
a055f9
)
]
interface
ID2D1SolidColorBrush
:
ID2D1Brush
{
void
SetColor
(
[
in
]
const
D2D1_COLOR_F
*
color
)
;
D2D1_COLOR_F
GetColor
()
;
}
[
local
]
HRESULT
__stdcall
D2D1CreateFactory
(
D2D1_FACTORY_TYPE
factory_type
,
REFIID
iid
,
const
D2D1_FACTORY_OPTIONS
*
factory_options
,
void
**
factory
)
;
include/d2dbasetypes.h
View file @
a4677f86
...
...
@@ -16,6 +16,19 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef D3DCOLORVALUE_DEFINED
typedef
struct
D3DCOLORVALUE
{
float
r
;
float
g
;
float
b
;
float
a
;
}
D3DCOLORVALUE
;
#define D3DCOLORVALUE_DEFINED
#endif
typedef
D3DCOLORVALUE
D2D_COLOR_F
;
typedef
struct
D2D_POINT_2F
{
FLOAT
x
;
...
...
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