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
34b1482f
Commit
34b1482f
authored
May 14, 2006
by
Stefan Dösinger
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Render state additions and fixes.
parent
8af7dd5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
24 deletions
+22
-24
device.c
dlls/wined3d/device.c
+22
-24
No files found.
dlls/wined3d/device.c
View file @
34b1482f
...
...
@@ -4122,32 +4122,30 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE
}
break
;
}
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
);
case
WINED3DRS_TEXTUREPERSPECTIVE
:
{
if
(
Value
)
glHint
(
GL_PERSPECTIVE_CORRECTION_HINT
,
GL_NICEST
);
else
glHint
(
GL_PERSPECTIVE_CORRECTION_HINT
,
GL_FASTEST
);
break
;
}
case
WINED3DRS_STIPPLEDALPHA
:
{
if
(
Value
)
ERR
(
" Stippled Alpha not supported yet.
\n
"
);
break
;
}
case
WINED3DRS_ANTIALIAS
:
{
if
(
Value
)
ERR
(
" Antialias not supported yet.
\n
"
);
break
;
}
default:
FIXME
(
"(%p)->(%
d,%ld) unrecognized
\n
"
,
This
,
State
,
Value
);
FIXME
(
"(%p)->(%
s,%ld) not handled yet
\n
"
,
This
,
debug_d3drenderstate
(
State
)
,
Value
);
}
LEAVE_GL
();
...
...
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