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
88a55a04
Commit
88a55a04
authored
Nov 15, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Implement D3D10StateBlockMaskDisableAll().
parent
73b9dc98
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
1 deletion
+22
-1
d3d10.spec
dlls/d3d10/d3d10.spec
+1
-1
stateblock.c
dlls/d3d10/stateblock.c
+12
-0
device.c
dlls/d3d10/tests/device.c
+8
-0
d3d10effect.h
include/d3d10effect.h
+1
-0
No files found.
dlls/d3d10/d3d10.spec
View file @
88a55a04
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
@ stdcall D3D10ReflectShader(ptr long ptr)
@ stdcall D3D10ReflectShader(ptr long ptr)
@ stub D3D10RegisterLayers
@ stub D3D10RegisterLayers
@ stdcall D3D10StateBlockMaskDifference(ptr ptr ptr)
@ stdcall D3D10StateBlockMaskDifference(ptr ptr ptr)
@ st
ub D3D10StateBlockMaskDisableAll
@ st
dcall D3D10StateBlockMaskDisableAll(ptr)
@ stub D3D10StateBlockMaskDisableCapture
@ stub D3D10StateBlockMaskDisableCapture
@ stub D3D10StateBlockMaskEnableAll
@ stub D3D10StateBlockMaskEnableAll
@ stub D3D10StateBlockMaskEnableCapture
@ stub D3D10StateBlockMaskEnableCapture
...
...
dlls/d3d10/stateblock.c
View file @
88a55a04
...
@@ -166,3 +166,15 @@ HRESULT WINAPI D3D10StateBlockMaskDifference(D3D10_STATE_BLOCK_MASK *mask_x,
...
@@ -166,3 +166,15 @@ HRESULT WINAPI D3D10StateBlockMaskDifference(D3D10_STATE_BLOCK_MASK *mask_x,
return
S_OK
;
return
S_OK
;
}
}
HRESULT
WINAPI
D3D10StateBlockMaskDisableAll
(
D3D10_STATE_BLOCK_MASK
*
mask
)
{
TRACE
(
"mask %p.
\n
"
,
mask
);
if
(
!
mask
)
return
E_INVALIDARG
;
memset
(
mask
,
0
,
sizeof
(
*
mask
));
return
S_OK
;
}
dlls/d3d10/tests/device.c
View file @
88a55a04
...
@@ -88,6 +88,14 @@ static void test_stateblock_mask(void)
...
@@ -88,6 +88,14 @@ static void test_stateblock_mask(void)
ok
(
hr
==
E_INVALIDARG
,
"Got unexpect hr %#x.
\n
"
,
hr
);
ok
(
hr
==
E_INVALIDARG
,
"Got unexpect hr %#x.
\n
"
,
hr
);
hr
=
D3D10StateBlockMaskDifference
(
&
mask_x
,
&
mask_y
,
NULL
);
hr
=
D3D10StateBlockMaskDifference
(
&
mask_x
,
&
mask_y
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"Got unexpect hr %#x.
\n
"
,
hr
);
ok
(
hr
==
E_INVALIDARG
,
"Got unexpect hr %#x.
\n
"
,
hr
);
memset
(
&
result
,
0xff
,
sizeof
(
result
));
hr
=
D3D10StateBlockMaskDisableAll
(
&
result
);
ok
(
SUCCEEDED
(
hr
),
"D3D10StateBlockMaskDisableAll failed, hr %#x.
\n
"
,
hr
);
ok
(
!
result
.
VS
,
"Got unexpected result.VS %#x.
\n
"
,
result
.
VS
);
ok
(
!
result
.
Predication
,
"Got unexpected result.Predication %#x.
\n
"
,
result
.
Predication
);
hr
=
D3D10StateBlockMaskDisableAll
(
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"Got unexpect hr %#x.
\n
"
,
hr
);
}
}
START_TEST
(
device
)
START_TEST
(
device
)
...
...
include/d3d10effect.h
View file @
88a55a04
...
@@ -806,6 +806,7 @@ HRESULT WINAPI D3D10CreateStateBlock(ID3D10Device *device,
...
@@ -806,6 +806,7 @@ HRESULT WINAPI D3D10CreateStateBlock(ID3D10Device *device,
HRESULT
WINAPI
D3D10StateBlockMaskDifference
(
D3D10_STATE_BLOCK_MASK
*
mask_x
,
HRESULT
WINAPI
D3D10StateBlockMaskDifference
(
D3D10_STATE_BLOCK_MASK
*
mask_x
,
D3D10_STATE_BLOCK_MASK
*
mask_y
,
D3D10_STATE_BLOCK_MASK
*
result
);
D3D10_STATE_BLOCK_MASK
*
mask_y
,
D3D10_STATE_BLOCK_MASK
*
result
);
HRESULT
WINAPI
D3D10StateBlockMaskDisableAll
(
D3D10_STATE_BLOCK_MASK
*
mask
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
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