radv: move assert down in radv_bind_descriptor_set
coverity complains about the deref before NULL check. Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
@@ -2015,13 +2015,13 @@ void radv_bind_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
|
||||
{
|
||||
struct radeon_winsys *ws = cmd_buffer->device->ws;
|
||||
|
||||
assert(!(set->layout->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
|
||||
|
||||
cmd_buffer->state.descriptors[idx] = set;
|
||||
cmd_buffer->state.descriptors_dirty |= (1u << idx);
|
||||
if (!set)
|
||||
return;
|
||||
|
||||
assert(!(set->layout->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
|
||||
|
||||
for (unsigned j = 0; j < set->layout->buffer_count; ++j)
|
||||
if (set->descriptors[j])
|
||||
ws->cs_add_buffer(cmd_buffer->cs, set->descriptors[j], 7);
|
||||
|
||||
Reference in New Issue
Block a user