Lines Matching defs:binding
2821 /* When a subpass uses a VRS attachment without binding a depth/stencil attachment, we have to
3077 uint8_t binding = state->bindings[index];
3078 if (!(cmd_buffer->state.vbo_bound_mask & BITFIELD_BIT(binding)))
3081 struct radv_vertex_binding *vb = &cmd_buffer->vertex_bindings[binding];
3716 unsigned binding =
3719 struct radv_buffer *buffer = cmd_buffer->vertex_binding_buffers[binding];
3743 stride = cmd_buffer->vertex_bindings[binding].stride;
3745 stride = pipeline->binding_stride[binding];
3773 offset = cmd_buffer->vertex_bindings[binding].offset;
3778 if (cmd_buffer->vertex_bindings[binding].size) {
3779 num_records = cmd_buffer->vertex_bindings[binding].size;
6055 bindings[pVertexBindingDescriptions[i].binding] = &pVertexBindingDescriptions[i];
6066 const VkVertexInputBindingDescription2EXT *binding = bindings[attrib->binding];
6070 state->bindings[loc] = attrib->binding;
6071 if (attrib->binding != loc)
6073 if (binding->inputRate == VK_VERTEX_INPUT_RATE_INSTANCE) {
6075 state->divisors[loc] = binding->divisor;
6076 if (binding->divisor == 0) {
6078 } else if (binding->divisor > 1) {
6082 cmd_buffer->vertex_bindings[attrib->binding].stride = binding->stride;
6124 cmd_buffer->state.vbo_bound_mask & BITFIELD_BIT(attrib->binding)) {
6125 if (binding->stride & found->fmt_align_req_minus_1) {
6127 } else if ((cmd_buffer->vertex_bindings[attrib->binding].offset + state->offsets[loc]) &
6432 /* When a subpass uses a VRS attachment without binding a depth/stencil attachment, we have