vrend: Don't try to set SSBOs when no location is given

As suggested by Lepton

Fixes 57a4e9498a
vrend: get rid of glShaderStorageBlockBinding

Closes: #229

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Lepton Wu <lepton@chromium.org>
macos/master
Gert Wollny 3 years ago
parent bf31c00acd
commit 806bd0ad2c
  1. 3
      src/vrend_renderer.c

@ -4342,6 +4342,9 @@ static void vrend_draw_bind_ssbo_shader(struct vrend_sub_context *sub_ctx, int s
if (!has_feature(feat_ssbo)) if (!has_feature(feat_ssbo))
return; return;
if (!sub_ctx->prog->ssbo_used_mask[shader_type])
return;
if (!sub_ctx->ssbo_used_mask[shader_type]) if (!sub_ctx->ssbo_used_mask[shader_type])
return; return;

Loading…
Cancel
Save