| 153 | |
| 154 | template <vkb::BindingType bindingType, typename AnchorStructType> |
| 155 | inline void StructureChainBuilder<bindingType, AnchorStructType>::set_anchor_struct_impl(AnchorStructType const &anchor_struct) |
| 156 | { |
| 157 | void const *pNext = std::any_cast<AnchorStructType>(structure_chain.front().get())->pNext; |
| 158 | *std::any_cast<AnchorStructType>(structure_chain.front().get()) = anchor_struct; |
| 159 | std::any_cast<AnchorStructType>(structure_chain.front().get())->pNext = pNext; |
| 160 | } |
| 161 | |
| 162 | } // namespace vkb |