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
ffab990b
Commit
ffab990b
authored
Jul 02, 2022
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1/effect: Check that "Inputs" property was specified in the description.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
parent
05d8283a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
factory.c
dlls/d2d1/factory.c
+2
-1
d2d1.c
dlls/d2d1/tests/d2d1.c
+0
-1
No files found.
dlls/d2d1/factory.c
View file @
ffab990b
...
...
@@ -921,7 +921,8 @@ static HRESULT STDMETHODCALLTYPE d2d_factory_RegisterEffectFromStream(ID2D1Facto
if
(
!
parse_effect_get_property
(
effect
,
L"DisplayName"
)
||
!
parse_effect_get_property
(
effect
,
L"Author"
)
||
!
parse_effect_get_property
(
effect
,
L"Category"
)
||
!
parse_effect_get_property
(
effect
,
L"Description"
))
||
!
parse_effect_get_property
(
effect
,
L"Description"
)
||
!
parse_effect_get_property
(
effect
,
L"Inputs"
))
{
WARN
(
"Missing required properties.
\n
"
);
d2d_effect_registration_cleanup
(
effect
);
...
...
dlls/d2d1/tests/d2d1.c
View file @
ffab990b
...
...
@@ -10855,7 +10855,6 @@ static void test_effect_register(BOOL d3d11)
winetest_push_context
(
"Test %u"
,
i
);
hr
=
ID2D1Factory1_RegisterEffectFromString
(
factory
,
&
CLSID_TestEffect
,
test
->
xml
,
NULL
,
0
,
effect_impl_create
);
todo_wine_if
(
i
==
5
)
ok
(
hr
==
test
->
hr
,
"Got unexpected hr %#lx, expected %#lx.
\n
"
,
hr
,
test
->
hr
);
if
(
hr
==
S_OK
)
{
...
...
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