mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-16 04:05:00 +00:00
Implement image loding test
This commit is contained in:
parent
8a0eb0e266
commit
12b33da083
9 changed files with 665 additions and 30 deletions
|
@ -1,22 +1,23 @@
|
|||
pub mod value;
|
||||
#![feature(type_alias_impl_trait)]
|
||||
//pub mod value;
|
||||
pub use graphene_core::{generic, ops /*, structural*/};
|
||||
|
||||
//#[cfg(feature = "memoization")]
|
||||
//pub mod memo;
|
||||
#[cfg(feature = "memoization")]
|
||||
pub mod memo;
|
||||
|
||||
//pub mod raster;
|
||||
pub mod raster;
|
||||
|
||||
pub use graphene_core::*;
|
||||
|
||||
use dyn_any::DynAny;
|
||||
/*use dyn_any::DynAny;
|
||||
pub type DynNode<'n, T> = &'n (dyn Node<'n, Output = T> + 'n);
|
||||
pub type DynAnyNode<'n> = &'n (dyn Node<'n, Output = &'n dyn DynAny<'n>> + 'n);
|
||||
|
||||
pub trait DynamicInput<'n> {
|
||||
fn set_kwarg_by_name(&mut self, name: &str, value: DynAnyNode<'n>);
|
||||
fn set_arg_by_index(&mut self, index: usize, value: DynAnyNode<'n>);
|
||||
}
|
||||
|
||||
*/
|
||||
use quote::quote;
|
||||
use syn::{Expr, ExprPath, Type};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue