Skip to content

Commit 2bb8f3f

Browse files
adamgerhantKeavon
authored andcommitted
Fix CI code build
1 parent b5493d4 commit 2bb8f3f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

editor/src/messages/portfolio/document/node_graph/document_node_types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2250,7 +2250,7 @@ fn static_nodes() -> Vec<DocumentNodeDefinition> {
22502250
implementation: DocumentNodeImplementation::proto("graphene_core::quantization::QuantizeNode<_>"),
22512251
inputs: vec![
22522252
NodeInput::value(TaggedValue::ImageFrame(ImageFrame::empty()), true),
2253-
NodeInput::value(TaggedValue::Quantization(core::array::from_fn(|_| Default::default())), true),,
2253+
NodeInput::value(TaggedValue::Quantization(core::array::from_fn(|_| Default::default())), true),
22542254
],
22552255
..Default::default()
22562256
},

node-graph/gstd/src/gpu_nodes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ async fn create_compute_pass_descriptor<T: Clone + Pixel + StaticTypeSized>(
207207
},*/
208208
#[cfg(feature = "quantization")]
209209
DocumentNode {
210-
name: "Dequantize".into(),
211210
inputs: vec![NodeInput::node(NodeId(0), 0), NodeInput::node(NodeId(1), 0)],
212211
implementation: DocumentNodeImplementation::proto("graphene_core::quantization::DeQuantizeNode"),
213212
..Default::default()
@@ -222,7 +221,6 @@ async fn create_compute_pass_descriptor<T: Clone + Pixel + StaticTypeSized>(
222221
},
223222
#[cfg(feature = "quantization")]
224223
DocumentNode {
225-
name: "Quantize".into(),
226224
inputs: vec![NodeInput::node(NodeId(4), 0), NodeInput::node(NodeId(1), 0)],
227225
implementation: DocumentNodeImplementation::proto("graphene_core::quantization::QuantizeNode"),
228226
..Default::default()

0 commit comments

Comments
 (0)