Skip to content

Commit f3c3a56

Browse files
committed
fix missing feature gate
1 parent 759b363 commit f3c3a56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

node-graph/gsvg-renderer/src/renderer.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ use std::collections::{HashMap, HashSet};
2222
use std::fmt::Write;
2323
use std::ops::Deref;
2424
use std::sync::{Arc, LazyLock};
25-
use vello::peniko::Blob;
2625
#[cfg(feature = "vello")]
2726
use vello::*;
2827

@@ -1039,7 +1038,7 @@ impl GraphicElementRendered for RasterDataTable<GPU> {
10391038
}
10401039

10411040
let image = peniko::Image::new(
1042-
Blob::new(LAZY_ARC_VEC_ZERO_U8.deref().clone()),
1041+
peniko::Blob::new(LAZY_ARC_VEC_ZERO_U8.deref().clone()),
10431042
peniko::ImageFormat::Rgba8,
10441043
instance.instance.data().width(),
10451044
instance.instance.data().height(),

0 commit comments

Comments
 (0)