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
d7b85499
Commit
d7b85499
authored
Dec 10, 2006
by
Stefan Dösinger
Committed by
Alexandre Julliard
Dec 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move WINED3DRS_MULTISAMPLEMASK to the state table.
parent
55a5b4ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
device.c
dlls/wined3d/device.c
+1
-7
state.c
dlls/wined3d/state.c
+7
-1
No files found.
dlls/wined3d/device.c
View file @
d7b85499
...
...
@@ -3430,6 +3430,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, W
case
WINED3DRS_TEXTUREPERSPECTIVE
:
case
WINED3DRS_STIPPLEDALPHA
:
case
WINED3DRS_ANTIALIAS
:
case
WINED3DRS_MULTISAMPLEMASK
:
StateTable
[
STATE_RENDER
(
State
)].
apply
(
STATE_RENDER
(
State
),
This
->
stateBlock
);
break
;
...
...
@@ -3440,13 +3441,6 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, W
return
WINED3DERR_INVALIDCALL
;
}
case
WINED3DRS_MULTISAMPLEMASK
:
{
if
(
0xFFFFFFFF
!=
Value
)
ERR
(
"(%p)->(%s,%d) not yet implemented
\n
"
,
This
,
debug_d3drenderstate
(
State
),
Value
);
break
;
}
case
WINED3DRS_PATCHEDGESTYLE
:
{
if
(
WINED3DPATCHEDGE_DISCRETE
!=
Value
)
...
...
dlls/wined3d/state.c
View file @
d7b85499
...
...
@@ -1166,6 +1166,12 @@ static void state_antialias(DWORD state, IWineD3DStateBlockImpl *stateblock) {
ERR
(
" Antialias not supported yet.
\n
"
);
}
static
void
state_multisampmask
(
DWORD
state
,
IWineD3DStateBlockImpl
*
stateblock
)
{
TRACE
(
"Stub
\n
"
);
if
(
stateblock
->
renderState
[
WINED3DRS_MULTISAMPLEMASK
]
!=
0xFFFFFFFF
)
ERR
(
"(WINED3DRS_MULTISAMPLEMASK,%d) not yet implemented
\n
"
,
stateblock
->
renderState
[
WINED3DRS_MULTISAMPLEMASK
]);
}
const
struct
StateEntry
StateTable
[]
=
{
/* State name representative, apply function */
...
...
@@ -1333,7 +1339,7 @@ const struct StateEntry StateTable[] =
{
/*159, WINED3DRS_POINTSCALE_B */
STATE_RENDER
(
WINED3DRS_POINTSCALEENABLE
),
state_pscale
},
{
/*160, WINED3DRS_POINTSCALE_C */
STATE_RENDER
(
WINED3DRS_POINTSCALEENABLE
),
state_pscale
},
{
/*161, WINED3DRS_MULTISAMPLEANTIALIAS */
STATE_RENDER
(
WINED3DRS_MULTISAMPLEANTIALIAS
),
state_multisampleaa
},
{
/*162, WINED3DRS_MULTISAMPLEMASK */
STATE_RENDER
(
WINED3DRS_MULTISAMPLEMASK
),
state_
unknown
},
{
/*162, WINED3DRS_MULTISAMPLEMASK */
STATE_RENDER
(
WINED3DRS_MULTISAMPLEMASK
),
state_
multisampmask
},
{
/*163, WINED3DRS_PATCHEDGESTYLE */
STATE_RENDER
(
WINED3DRS_PATCHEDGESTYLE
),
state_unknown
},
{
/*164, WINED3DRS_PATCHSEGMENTS */
STATE_RENDER
(
WINED3DRS_PATCHSEGMENTS
),
state_unknown
},
{
/*165, WINED3DRS_DEBUGMONITORTOKEN */
STATE_RENDER
(
WINED3DRS_DEBUGMONITORTOKEN
),
state_unknown
},
...
...
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