diff options
author | Jason Ekstrand <[email protected]> | 2016-07-20 20:06:09 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-07-22 16:27:35 -0700 |
commit | 3c0077a6ec4c0ffd6e74e219c786d5d7f9217ce9 (patch) | |
tree | 5207dc2e559b1230cc115a5976c773f8bf8d5751 /src/intel | |
parent | 95e9d58bdb7df402d9035842c3fe76234a14c2da (diff) |
anv/pipeline: Set binding_table.gather_texture_start
This should get texture gather working on gen8+ and mostly working on gen7.
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Cc: "12.0" <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 3723423617b..57e1bddd44f 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -387,6 +387,7 @@ anv_fill_binding_table(struct brw_stage_prog_data *prog_data, unsigned bias) { prog_data->binding_table.size_bytes = 0; prog_data->binding_table.texture_start = bias; + prog_data->binding_table.gather_texture_start = bias; prog_data->binding_table.ubo_start = bias; prog_data->binding_table.ssbo_start = bias; prog_data->binding_table.image_start = bias; |