Add compute pipeline test

This commit is contained in:
Dennis Kobert 2023-06-17 17:20:22 +02:00 committed by Keavon Chambers
parent e03da35a83
commit 21c62ace64
8 changed files with 11 additions and 13 deletions

View file

@ -210,6 +210,7 @@ pub struct IntoNode<I, O> {
_i: PhantomData<I>,
_o: PhantomData<O>,
}
#[cfg(feature = "alloc")]
#[node_macro::node_fn(IntoNode<_I, _O>)]
async fn into<_I, _O>(input: _I) -> _O
where

View file

@ -11,6 +11,7 @@ pub mod adjustments;
pub mod bbox;
#[cfg(not(target_arch = "spirv"))]
pub mod brightness_contrast;
#[cfg(not(target_arch = "spirv"))]
pub mod brush_cache;
pub mod color;
pub mod discrete_srgb;