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
59189ba7
Commit
59189ba7
authored
Apr 12, 2006
by
Karsten Elfenbein
Committed by
Alexandre Julliard
Apr 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Combined unhandled renderstate cases into one.
parent
c90c0460
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
31 deletions
+22
-31
device.c
dlls/wined3d/device.c
+22
-31
No files found.
dlls/wined3d/device.c
View file @
59189ba7
...
...
@@ -3745,24 +3745,6 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE
}
break
;
}
case
WINED3DRS_MULTISAMPLEMASK
:
case
WINED3DRS_PATCHEDGESTYLE
:
case
WINED3DRS_PATCHSEGMENTS
:
case
WINED3DRS_DEBUGMONITORTOKEN
:
case
WINED3DRS_POSITIONORDER
:
case
WINED3DRS_NORMALORDER
:
/* Direct3D9 render states */
case
WINED3DRS_MINTESSELLATIONLEVEL
:
case
WINED3DRS_MAXTESSELLATIONLEVEL
:
case
WINED3DRS_ADAPTIVETESS_X
:
case
WINED3DRS_ADAPTIVETESS_Y
:
case
WINED3DRS_ADAPTIVETESS_Z
:
case
WINED3DRS_ADAPTIVETESS_W
:
case
WINED3DRS_ENABLEADAPTIVETESSELLATION
:
{
FIXME
(
"(%p)->(%s,%ld) not handled yet
\n
"
,
This
,
debug_d3drenderstate
(
State
),
Value
);
break
;
}
case
WINED3DRS_TWOSIDEDSTENCILMODE
:
{
if
(
Value
)
{
...
...
@@ -3876,15 +3858,6 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE
}
break
;
}
case
WINED3DRS_COLORWRITEENABLE1
:
case
WINED3DRS_COLORWRITEENABLE2
:
case
WINED3DRS_COLORWRITEENABLE3
:
case
WINED3DRS_BLENDFACTOR
:
case
WINED3DRS_SRGBWRITEENABLE
:
{
FIXME
(
"(%p)->(%s,%ld) not handled yet
\n
"
,
This
,
debug_d3drenderstate
(
State
),
Value
);
break
;
}
case
WINED3DRS_DEPTHBIAS
:
{
if
(
Value
)
{
...
...
@@ -3899,10 +3872,28 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE
}
break
;
}
case
WINED3DRS_SEPARATEALPHABLENDENABLE
:
case
WINED3DRS_SRCBLENDALPHA
:
case
WINED3DRS_DESTBLENDALPHA
:
case
WINED3DRS_BLENDOPALPHA
:
case
WINED3DRS_SEPARATEALPHABLENDENABLE
:
case
WINED3DRS_SRCBLENDALPHA
:
case
WINED3DRS_DESTBLENDALPHA
:
case
WINED3DRS_BLENDOPALPHA
:
case
WINED3DRS_MULTISAMPLEMASK
:
case
WINED3DRS_PATCHEDGESTYLE
:
case
WINED3DRS_PATCHSEGMENTS
:
case
WINED3DRS_DEBUGMONITORTOKEN
:
case
WINED3DRS_POSITIONORDER
:
case
WINED3DRS_NORMALORDER
:
case
WINED3DRS_MINTESSELLATIONLEVEL
:
case
WINED3DRS_MAXTESSELLATIONLEVEL
:
case
WINED3DRS_ADAPTIVETESS_X
:
case
WINED3DRS_ADAPTIVETESS_Y
:
case
WINED3DRS_ADAPTIVETESS_Z
:
case
WINED3DRS_ADAPTIVETESS_W
:
case
WINED3DRS_ENABLEADAPTIVETESSELLATION
:
case
WINED3DRS_COLORWRITEENABLE1
:
case
WINED3DRS_COLORWRITEENABLE2
:
case
WINED3DRS_COLORWRITEENABLE3
:
case
WINED3DRS_BLENDFACTOR
:
case
WINED3DRS_SRGBWRITEENABLE
:
FIXME
(
"(%p)->(%s,%ld) not handled yet
\n
"
,
This
,
debug_d3drenderstate
(
State
),
Value
);
break
;
default:
...
...
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