1 2 3 4 5 6 7 8 9 10
use super::*; impl Context { pub fn flush_memory(&mut self) { match self { Self::Vulkan(vk) => vk.memory_flush_extension_flush_memory(), Self::WebGpu(_) => (), } } }