skia_safe/core/
bbh_factory.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::prelude::*;
use skia_bindings::{SkBBHFactory, SkBBoxHierarchy};

// TODO: complete the wrapper
pub type BBoxHierarchy = RCHandle<SkBBoxHierarchy>;

// TODO: complete the wrapper
pub type BBHFactory = Handle<SkBBHFactory>;

impl NativeDrop for SkBBHFactory {
    fn drop(&mut self) {
        unimplemented!()
    }
}

// TODO: complete the wrapper functions
impl BBHFactory {}