From: Jason Ekstrand Date: Fri, 6 Nov 2015 23:57:51 +0000 (-0800) Subject: anv/pipeline: Set the right SSBO binding table start index for FS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=104525c33b154ed31cfedea2100b275abbc7a739;p=mesa.git anv/pipeline: Set the right SSBO binding table start index for FS --- diff --git a/src/vulkan/anv_pipeline.c b/src/vulkan/anv_pipeline.c index 67579c14e87..124140fa224 100644 --- a/src/vulkan/anv_pipeline.c +++ b/src/vulkan/anv_pipeline.c @@ -406,6 +406,7 @@ anv_pipeline_compile(struct anv_pipeline *pipeline, prog_data->binding_table.size_bytes = 0; prog_data->binding_table.texture_start = bias; prog_data->binding_table.ubo_start = bias; + prog_data->binding_table.ssbo_start = bias; prog_data->binding_table.image_start = bias; /* Finish the optimization and compilation process */