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
f658aabf
Commit
f658aabf
authored
May 30, 2012
by
Rico Schüller
Committed by
Alexandre Julliard
May 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Crop the input in ID3DXBaseEffect::SetBool().
parent
37e483d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
effect.c
dlls/d3dx9_36/effect.c
+2
-0
effect.c
dlls/d3dx9_36/tests/effect.c
+2
-1
No files found.
dlls/d3dx9_36/effect.c
View file @
f658aabf
...
...
@@ -1725,6 +1725,8 @@ static HRESULT WINAPI ID3DXBaseEffectImpl_SetBool(ID3DXBaseEffect *iface, D3DXHA
if
(
param
&&
!
param
->
element_count
&&
param
->
rows
==
1
&&
param
->
columns
==
1
)
{
/* crop input */
b
=
b
?
TRUE
:
FALSE
;
set_number
(
param
->
data
,
param
->
type
,
&
b
,
D3DXPT_BOOL
);
return
D3D_OK
;
}
...
...
dlls/d3dx9_36/tests/effect.c
View file @
f658aabf
...
...
@@ -1857,11 +1857,12 @@ static void test_effect_parameter_value(IDirect3DDevice9 *device)
test_effect_parameter_value_GetTestGroup
(
&
res
[
k
],
effect
,
&
blob
[
res_value_offset
],
parameter
,
i
);
/* SetBool */
bvalue
=
1
;
bvalue
=
5
;
memcpy
(
expected_value
,
&
blob
[
res_value_offset
],
res_desc
->
Bytes
);
hr
=
effect
->
lpVtbl
->
SetBool
(
effect
,
parameter
,
bvalue
);
if
(
!
res_desc
->
Elements
&&
res_desc
->
Rows
==
1
&&
res_desc
->
Columns
==
1
)
{
bvalue
=
bvalue
?
TRUE
:
FALSE
;
set_number
(
expected_value
,
res_desc
->
Type
,
&
bvalue
,
D3DXPT_BOOL
);
ok
(
hr
==
D3D_OK
,
"%u - %s: SetBool failed, got %#x, expected %#x
\n
"
,
i
,
res_full_name
,
hr
,
D3D_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