1
0
Fork 0
forked from wry/wry

renderer: add missing sync ops

This commit is contained in:
Julian Orth 2025-12-04 17:12:14 +01:00
parent db7520bffa
commit 1189827b8b
3 changed files with 12 additions and 7 deletions

View file

@ -227,6 +227,10 @@ impl RendererBase<'_> {
cd: cd.clone(),
}));
}
pub fn sync(&mut self) {
self.ops.push(GfxApiOpt::Sync);
}
}
#[inline]