ssbo: reorder var assignment

Just a review nit fixup
macos/master
Dave Airlie 6 years ago
parent 083d97fff5
commit df7322e7dc
  1. 2
      src/vrend_renderer.c

@ -2300,9 +2300,9 @@ void vrend_set_single_ssbo(struct vrend_context *ctx,
report_context_error(ctx, VIRGL_ERROR_CTX_ILLEGAL_RESOURCE, handle); report_context_error(ctx, VIRGL_ERROR_CTX_ILLEGAL_RESOURCE, handle);
return; return;
} }
ssbo->res = res;
ssbo->buffer_offset = offset; ssbo->buffer_offset = offset;
ssbo->buffer_size = length; ssbo->buffer_size = length;
ssbo->res = res;
ctx->sub->ssbo_used_mask[shader_type] |= (1 << index); ctx->sub->ssbo_used_mask[shader_type] |= (1 << index);
} else { } else {
ssbo->res = 0; ssbo->res = 0;

Loading…
Cancel
Save