mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
r600g/compute: Don't initialize vertex_buffer_state masks to 0x2
cs_vertex_buffer_state.enabled_mask and cs_vertex_buffer_state.dirty_mask are both updated when r600_set_constant_buffer() is called, so we don't need to manually update these values. This fixes a crash with OpenCL programs that have a kernel with no arguments. https://bugs.freedesktop.org/show_bug.cgi?id=82671 CC: "10.2" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
a9f0b08bac
commit
bf7a60f41d
1 changed files with 0 additions and 3 deletions
|
|
@ -892,9 +892,6 @@ void evergreen_init_compute_state_functions(struct r600_context *ctx)
|
|||
ctx->b.b.set_global_binding = evergreen_set_global_binding;
|
||||
ctx->b.b.launch_grid = evergreen_launch_grid;
|
||||
|
||||
/* We always use at least one vertex buffer for parameters (id = 1)*/
|
||||
ctx->cs_vertex_buffer_state.enabled_mask =
|
||||
ctx->cs_vertex_buffer_state.dirty_mask = 0x2;
|
||||
}
|
||||
|
||||
struct pipe_resource *r600_compute_global_buffer_create(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue