diff options
author | Charmaine Lee <[email protected]> | 2016-01-26 11:12:09 -0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-03-21 13:37:40 -0600 |
commit | f8aaf0094dd23b5f94bbef5fd444861d286ddb36 (patch) | |
tree | 360e98f12b93eafddb010722ca0a8405c02bc759 /src/gallium | |
parent | 47856e59456361f2218e03d997d2735e1a848230 (diff) |
svga: Fix the index buffer rebind regression
The index buffer handle saved in the hw_state structure could
be invalid after the index buffer is destroyed. Instead of
rebinding the index buffer using the saved index buffer handle,
we will reset the index buffer handle in the hw_state structure
to force resending of the index buffer.
Fixes bug 1593320
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/svga/svga_draw.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gallium/drivers/svga/svga_draw.c b/src/gallium/drivers/svga/svga_draw.c index 96f82381708..0b9ea889afa 100644 --- a/src/gallium/drivers/svga/svga_draw.c +++ b/src/gallium/drivers/svga/svga_draw.c @@ -464,13 +464,8 @@ draw_vgpu10(struct svga_hwtnl *hwtnl, if (ret != PIPE_OK) return ret; - /* Rebind index buffer */ - if (svga->state.hw_draw.ib) { - struct svga_winsys_context *swc = svga->swc; - ret = swc->resource_rebind(swc, svga->state.hw_draw.ib, NULL, SVGA_RELOC_READ); - if (ret != PIPE_OK) - return ret; - } + /* Force rebinding the index buffer when needed */ + svga->state.hw_draw.ib = NULL; } ret = validate_sampler_resources(svga); |