| 1199 | template <vkb::BindingType bindingType> |
| 1200 | inline void CommandBuffer<bindingType>::set_specialization_constant(uint32_t constant_id, std::vector<uint8_t> const &data) |
| 1201 | { |
| 1202 | pipeline_state.set_specialization_constant(constant_id, data); |
| 1203 | } |
| 1204 | |
| 1205 | template <vkb::BindingType bindingType> |
| 1206 | inline void CommandBuffer<bindingType>::set_update_after_bind(bool update_after_bind_) |
| 1207 | { |
| 1208 | update_after_bind = update_after_bind_; |
| 1209 | } |
| 1210 | |
| 1211 | template <vkb::BindingType bindingType> |
| 1212 | inline void CommandBuffer<bindingType>::set_vertex_input_state(vkb::rendering::VertexInputState<bindingType> const &state_info) |
| 1213 | { |
| 1214 | if constexpr (bindingType == vkb::BindingType::Cpp) |