update servicepoint, simplify copy_raw

This commit is contained in:
Vinzenz Schroeter 2025-06-13 10:17:59 +02:00
parent 8d5e408653
commit 4cbf3784fc
5 changed files with 18 additions and 19 deletions

View file

@ -2,7 +2,7 @@ use crate::macros::{
wrap_get_set_fill_2d, wrap_uniffi_object, wrap_width_height,
};
use servicepoint::{DataRef, Grid};
use std::sync::Arc;
use std::{ops::Deref, sync::Arc};
wrap_uniffi_object!(Bitmap);
wrap_width_height!(Bitmap);
@ -37,6 +37,6 @@ impl Bitmap {
}
pub fn copy_raw(&self) -> Vec<u8> {
self.actual.read().unwrap().data_ref().to_vec()
self.actual.read().unwrap().deref().into()
}
}