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
b557f5ba
Commit
b557f5ba
authored
Jan 04, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Don't touch state->user_stream in wined3d_device_process_vertices().
device_stream_info_from_declaration() no longer cares about state->user_stream.
parent
76a2864a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
device.c
dlls/wined3d/device.c
+0
-6
No files found.
dlls/wined3d/device.c
View file @
b557f5ba
...
...
@@ -3575,7 +3575,6 @@ HRESULT CDECL wined3d_device_process_vertices(struct wined3d_device *device,
struct
wined3d_state
*
state
=
&
device
->
stateBlock
->
state
;
struct
wined3d_stream_info
stream_info
;
const
struct
wined3d_gl_info
*
gl_info
;
BOOL
streamWasUP
=
state
->
user_stream
;
struct
wined3d_context
*
context
;
struct
wined3d_shader
*
vs
;
unsigned
int
i
;
...
...
@@ -3593,14 +3592,9 @@ HRESULT CDECL wined3d_device_process_vertices(struct wined3d_device *device,
context
=
context_acquire
(
device
,
NULL
);
gl_info
=
context
->
gl_info
;
/* ProcessVertices reads from vertex buffers, which have to be assigned.
* DrawPrimitive and DrawPrimitiveUP control the streamIsUP flag, thus
* restore it afterwards. */
vs
=
state
->
vertex_shader
;
state
->
vertex_shader
=
NULL
;
state
->
user_stream
=
FALSE
;
device_stream_info_from_declaration
(
device
,
&
stream_info
);
state
->
user_stream
=
streamWasUP
;
state
->
vertex_shader
=
vs
;
/* We can't convert FROM a VBO, and vertex buffers used to source into
...
...
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