summaryrefslogblamecommitdiffstats
path: root/wgpu/src/renderer/widget/image.rs
blob: 70dc5d97c08b2c1ebf3faa3c65cd521f13976138 (plain) (tree)
1
2
3
4
5
6
7
8
                                 
                                              
 
                                   

                                                                

     




                              

                              
                       



                                        

     
use crate::{Primitive, Renderer};
use iced_native::{image, Layout, MouseCursor};

impl image::Renderer for Renderer {
    fn dimensions(&self, handle: &image::Handle) -> (u32, u32) {
        self.image_pipeline.dimensions(handle)
    }

    fn draw(
        &mut self,
        handle: image::Handle,
        layout: Layout<'_>,
    ) -> Self::Output {
        (
            Primitive::Image {
                handle,
                bounds: layout.bounds(),
            },
            MouseCursor::OutOfBounds,
        )
    }
}