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
d29af2e4
Commit
d29af2e4
authored
Aug 17, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Only print a FIXME/WARN for specific properties in d2d_factory_init().
parent
3e0af5f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
factory.c
dlls/d2d1/factory.c
+4
-1
No files found.
dlls/d2d1/factory.c
View file @
d29af2e4
...
...
@@ -310,7 +310,10 @@ static const struct ID2D1FactoryVtbl d2d_factory_vtbl =
static
void
d2d_factory_init
(
struct
d2d_factory
*
factory
,
D2D1_FACTORY_TYPE
factory_type
,
const
D2D1_FACTORY_OPTIONS
*
factory_options
)
{
FIXME
(
"Ignoring factory type and options.
\n
"
);
if
(
factory_type
!=
D2D1_FACTORY_TYPE_SINGLE_THREADED
)
FIXME
(
"Ignoring factory type %#x.
\n
"
,
factory_type
);
if
(
factory_options
&&
factory_options
->
debugLevel
!=
D2D1_DEBUG_LEVEL_NONE
)
WARN
(
"Ignoring debug level %#x.
\n
"
,
factory_options
->
debugLevel
);
factory
->
ID2D1Factory_iface
.
lpVtbl
=
&
d2d_factory_vtbl
;
factory
->
refcount
=
1
;
...
...
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