mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
st/mesa: empty buffer binding if the buffer's not really there
This can happen with 0-sized buffers. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
76e2af3dd4
commit
cfbf25ac8f
1 changed files with 5 additions and 3 deletions
|
|
@ -58,9 +58,11 @@ st_bind_atomics(struct st_context *st,
|
|||
st_buffer_object(binding->BufferObject);
|
||||
struct pipe_shader_buffer sb = { 0 };
|
||||
|
||||
sb.buffer = st_obj->buffer;
|
||||
sb.buffer_offset = binding->Offset;
|
||||
sb.buffer_size = st_obj->buffer->width0 - binding->Offset;
|
||||
if (st_obj && st_obj->buffer) {
|
||||
sb.buffer = st_obj->buffer;
|
||||
sb.buffer_offset = binding->Offset;
|
||||
sb.buffer_size = st_obj->buffer->width0 - binding->Offset;
|
||||
}
|
||||
|
||||
st->pipe->set_shader_buffers(st->pipe, shader_type,
|
||||
atomic->Binding, 1, &sb);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue