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
a967e775
Commit
a967e775
authored
May 10, 2004
by
Christian Costa
Committed by
Alexandre Julliard
May 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed W buffer handling.
parent
4e10f0e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
device.c
dlls/d3d8/device.c
+5
-2
No files found.
dlls/d3d8/device.c
View file @
a967e775
...
@@ -2242,10 +2242,13 @@ HRESULT WINAPI IDirect3DDevice8Impl_SetRenderState(LPDIRECT3DDEVICE8 iface, D3
...
@@ -2242,10 +2242,13 @@ HRESULT WINAPI IDirect3DDevice8Impl_SetRenderState(LPDIRECT3DDEVICE8 iface, D3
glEnable
(
GL_DEPTH_TEST
);
glEnable
(
GL_DEPTH_TEST
);
checkGLcall
(
"glEnable GL_DEPTH_TEST"
);
checkGLcall
(
"glEnable GL_DEPTH_TEST"
);
break
;
break
;
case
D3DZB_USEW
:
case
D3DZB_USEW
:
glEnable
(
GL_DEPTH_TEST
);
checkGLcall
(
"glEnable GL_DEPTH_TEST"
);
FIXME
(
"W buffer is not well handled
\n
"
);
break
;
default:
default:
FIXME
(
"Unrecognized
/Unhandled
D3DZBUFFERTYPE value %ld
\n
"
,
Value
);
FIXME
(
"Unrecognized D3DZBUFFERTYPE value %ld
\n
"
,
Value
);
}
}
break
;
break
;
...
...
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