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
dfe07023
Commit
dfe07023
authored
Oct 08, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Don't test D3DRS_DEBUGMONITORTOKEN in the stateblock tests.
parent
a5b27217
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
stateblock.c
dlls/d3d9/tests/stateblock.c
+5
-3
No files found.
dlls/d3d9/tests/stateblock.c
View file @
dfe07023
...
...
@@ -1100,7 +1100,7 @@ const D3DRENDERSTATETYPE render_state_indices[] =
D3DRS_EMISSIVEMATERIALSOURCE
,
D3DRS_VERTEXBLEND
,
D3DRS_CLIPPLANEENABLE
,
#if 0 /* Driver dependent
, increase array size to enable
*/
#if 0 /* Driver dependent */
D3DRS_POINTSIZE,
#endif
D3DRS_POINTSIZE_MIN
,
...
...
@@ -1112,7 +1112,9 @@ const D3DRENDERSTATETYPE render_state_indices[] =
D3DRS_MULTISAMPLEANTIALIAS
,
D3DRS_MULTISAMPLEMASK
,
D3DRS_PATCHEDGESTYLE
,
#if 0 /* Apparently not recorded in the stateblock */
D3DRS_DEBUGMONITORTOKEN,
#endif
D3DRS_POINTSIZE_MAX
,
D3DRS_INDEXEDVERTEXBLENDENABLE
,
D3DRS_COLORWRITEENABLE
,
...
...
@@ -1277,7 +1279,7 @@ static void render_state_default_data_init(const struct render_state_arg *rsarg,
data
->
states
[
idx
++
]
=
TRUE
;
/* MULTISAMPLEANTIALIAS */
data
->
states
[
idx
++
]
=
0xFFFFFFFF
;
/* MULTISAMPLEMASK */
data
->
states
[
idx
++
]
=
D3DPATCHEDGE_DISCRETE
;
/* PATCHEDGESTYLE */
data
->
states
[
idx
++
]
=
0xbaadcafe
;
/* DEBUGMONITORTOKEN
*/
if
(
0
)
data
->
states
[
idx
++
]
=
0xbaadcafe
;
/* DEBUGMONITORTOKEN, not recorded in the stateblock
*/
data
->
states
[
idx
++
]
=
to_dword
(
rsarg
->
pointsize_max
);
/* POINTSIZE_MAX */
data
->
states
[
idx
++
]
=
FALSE
;
/* INDEXEDVERTEXBLENDENABLE */
data
->
states
[
idx
++
]
=
0x0000000F
;
/* COLORWRITEENABLE */
...
...
@@ -1397,7 +1399,7 @@ static void render_state_test_data_init(struct render_state_data *data)
data
->
states
[
idx
++
]
=
FALSE
;
/* MULTISAMPLEANTIALIAS */
data
->
states
[
idx
++
]
=
0xABCDDBCA
;
/* MULTISAMPLEMASK */
data
->
states
[
idx
++
]
=
D3DPATCHEDGE_CONTINUOUS
;
/* PATCHEDGESTYLE */
data
->
states
[
idx
++
]
=
D3DDMT_DISABLE
;
/* DEBUGMONITORTOKEN
*/
if
(
0
)
data
->
states
[
idx
++
]
=
D3DDMT_DISABLE
;
/* DEBUGMONITORTOKEN, not recorded in the stateblock
*/
data
->
states
[
idx
++
]
=
to_dword
(
77
.
0
f
);
/* POINTSIZE_MAX */
data
->
states
[
idx
++
]
=
TRUE
;
/* INDEXEDVERTEXBLENDENABLE */
data
->
states
[
idx
++
]
=
0x00000009
;
/* COLORWRITEENABLE */
...
...
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