| 212 | } |
| 213 | |
| 214 | void DescriptorSet::apply_writes() const |
| 215 | { |
| 216 | vkUpdateDescriptorSets(device.get_handle(), |
| 217 | to_u32(write_descriptor_sets.size()), |
| 218 | write_descriptor_sets.data(), |
| 219 | 0, |
| 220 | nullptr); |
| 221 | } |
| 222 | |
| 223 | DescriptorSet::DescriptorSet(DescriptorSet &&other) : |
| 224 | device{other.device}, |
no test coverage detected