diff options
author | Jason Ekstrand <[email protected]> | 2015-11-06 13:16:15 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-11-06 13:16:18 -0800 |
commit | d7cc9929bb5c82ded45f3a6345c4141348514c85 (patch) | |
tree | d369f6e1459940370ce95094dbff854b7225c016 /src/vulkan/anv_cmd_buffer.c | |
parent | 0360c3608b880f65921a497c8d17a74165d2970d (diff) |
anv: Remove all support for BufferViews
We never *actually* supported them, we just used them for binding UBOs.
Now that we have BufferInfo and we aren't supporting texture buffers yet,
we should get rid of them until we can do them properly.
Diffstat (limited to 'src/vulkan/anv_cmd_buffer.c')
-rw-r--r-- | src/vulkan/anv_cmd_buffer.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/vulkan/anv_cmd_buffer.c b/src/vulkan/anv_cmd_buffer.c index 5ce57f1d98e..be8a537f656 100644 --- a/src/vulkan/anv_cmd_buffer.c +++ b/src/vulkan/anv_cmd_buffer.c @@ -605,11 +605,6 @@ anv_cmd_buffer_emit_binding_table(struct anv_cmd_buffer *cmd_buffer, case ANV_DESCRIPTOR_TYPE_SAMPLER: /* Nothing for us to do here */ continue; - case ANV_DESCRIPTOR_TYPE_BUFFER_VIEW: - surface_state = desc->buffer_view->surface_state; - bo = desc->buffer_view->bo; - bo_offset = desc->buffer_view->offset; - break; case ANV_DESCRIPTOR_TYPE_BUFFER_AND_OFFSET: { bo = desc->buffer->bo; bo_offset = desc->buffer->offset + desc->offset; |