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
f9c7fabe
Commit
f9c7fabe
authored
Jul 13, 2023
by
Matteo Bruni
Committed by
Alexandre Julliard
Oct 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Don't skip setting clip planes if the view transform state is dirty.
More fallout from
2ddb6b66
.
parent
52795554
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
state.c
dlls/wined3d/state.c
+1
-1
No files found.
dlls/wined3d/state.c
View file @
f9c7fabe
...
...
@@ -3680,7 +3680,7 @@ void clipplane(struct wined3d_context *context, const struct wined3d_state *stat
UINT
index
=
state_id
-
STATE_CLIPPLANE
(
0
);
GLdouble
plane
[
4
];
if
(
i
sStateDirty
(
context
,
STATE_TRANSFORM
(
WINED3D_TS_VIEW
))
||
i
ndex
>=
gl_info
->
limits
.
user_clip_distances
)
if
(
index
>=
gl_info
->
limits
.
user_clip_distances
)
return
;
gl_info
->
gl_ops
.
gl
.
p_glMatrixMode
(
GL_MODELVIEW
);
...
...
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