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
4afc7470
Commit
4afc7470
authored
Jun 21, 2016
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Resolve "load_base_vertex_index" in wined3d_cs_exec_draw().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9c1fbe50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
16 deletions
+9
-16
cs.c
dlls/wined3d/cs.c
+9
-1
device.c
dlls/wined3d/device.c
+0
-15
No files found.
dlls/wined3d/cs.c
View file @
4afc7470
...
...
@@ -311,9 +311,17 @@ void wined3d_cs_emit_clear(struct wined3d_cs *cs, DWORD rect_count, const RECT *
static
void
wined3d_cs_exec_draw
(
struct
wined3d_cs
*
cs
,
const
void
*
data
)
{
struct
wined3d_state
*
state
=
&
cs
->
device
->
state
;
const
struct
wined3d_cs_draw
*
op
=
data
;
draw_primitive
(
cs
->
device
,
&
cs
->
device
->
state
,
op
->
base_vertex_idx
,
op
->
start_idx
,
if
(
!
cs
->
device
->
adapter
->
gl_info
.
supported
[
ARB_DRAW_ELEMENTS_BASE_VERTEX
]
&&
state
->
load_base_vertex_index
!=
op
->
base_vertex_idx
)
{
state
->
load_base_vertex_index
=
op
->
base_vertex_idx
;
device_invalidate_state
(
cs
->
device
,
STATE_BASEVERTEXINDEX
);
}
draw_primitive
(
cs
->
device
,
state
,
op
->
base_vertex_idx
,
op
->
start_idx
,
op
->
index_count
,
op
->
start_instance
,
op
->
instance_count
,
op
->
indexed
);
}
...
...
dlls/wined3d/device.c
View file @
4afc7470
...
...
@@ -3497,12 +3497,6 @@ HRESULT CDECL wined3d_device_draw_primitive(struct wined3d_device *device, UINT
{
TRACE
(
"device %p, start_vertex %u, vertex_count %u.
\n
"
,
device
,
start_vertex
,
vertex_count
);
if
(
device
->
state
.
load_base_vertex_index
)
{
device
->
state
.
load_base_vertex_index
=
0
;
device_invalidate_state
(
device
,
STATE_BASEVERTEXINDEX
);
}
wined3d_cs_emit_draw
(
device
->
cs
,
0
,
start_vertex
,
vertex_count
,
0
,
0
,
FALSE
);
return
WINED3D_OK
;
...
...
@@ -3519,8 +3513,6 @@ void CDECL wined3d_device_draw_primitive_instanced(struct wined3d_device *device
HRESULT
CDECL
wined3d_device_draw_indexed_primitive
(
struct
wined3d_device
*
device
,
UINT
start_idx
,
UINT
index_count
)
{
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
TRACE
(
"device %p, start_idx %u, index_count %u.
\n
"
,
device
,
start_idx
,
index_count
);
if
(
!
device
->
state
.
index_buffer
)
...
...
@@ -3533,13 +3525,6 @@ HRESULT CDECL wined3d_device_draw_indexed_primitive(struct wined3d_device *devic
return
WINED3DERR_INVALIDCALL
;
}
if
(
!
gl_info
->
supported
[
ARB_DRAW_ELEMENTS_BASE_VERTEX
]
&&
device
->
state
.
load_base_vertex_index
!=
device
->
state
.
base_vertex_index
)
{
device
->
state
.
load_base_vertex_index
=
device
->
state
.
base_vertex_index
;
device_invalidate_state
(
device
,
STATE_BASEVERTEXINDEX
);
}
wined3d_cs_emit_draw
(
device
->
cs
,
device
->
state
.
base_vertex_index
,
start_idx
,
index_count
,
0
,
0
,
TRUE
);
return
WINED3D_OK
;
...
...
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