We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759b363 commit f3c3a56Copy full SHA for f3c3a56
node-graph/gsvg-renderer/src/renderer.rs
@@ -22,7 +22,6 @@ use std::collections::{HashMap, HashSet};
22
use std::fmt::Write;
23
use std::ops::Deref;
24
use std::sync::{Arc, LazyLock};
25
-use vello::peniko::Blob;
26
#[cfg(feature = "vello")]
27
use vello::*;
28
@@ -1039,7 +1038,7 @@ impl GraphicElementRendered for RasterDataTable<GPU> {
1039
1038
}
1040
1041
let image = peniko::Image::new(
1042
- Blob::new(LAZY_ARC_VEC_ZERO_U8.deref().clone()),
+ peniko::Blob::new(LAZY_ARC_VEC_ZERO_U8.deref().clone()),
1043
peniko::ImageFormat::Rgba8,
1044
instance.instance.data().width(),
1045
instance.instance.data().height(),
0 commit comments