Introduce explicit image::allocate API
This commit is contained in:
parent
6fa54f7f6b
commit
23039e758e
15 changed files with 355 additions and 51 deletions
|
|
@ -228,6 +228,16 @@ impl core::Renderer for Renderer {
|
|||
fn reset(&mut self, new_bounds: Rectangle) {
|
||||
self.layers.reset(new_bounds);
|
||||
}
|
||||
|
||||
fn allocate_image(
|
||||
&mut self,
|
||||
handle: &core::image::Handle,
|
||||
callback: impl FnOnce(core::image::Allocation) + Send + 'static,
|
||||
) {
|
||||
// TODO: Concurrency
|
||||
#[allow(unsafe_code)]
|
||||
callback(unsafe { core::image::allocate(handle) });
|
||||
}
|
||||
}
|
||||
|
||||
impl core::text::Renderer for Renderer {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue