docs.rs failed to build rasen-0.12.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
rasen-0.10.0
rasen
The rasen
crate contains the core graph compiler itself. It provides graph building utilities (the Graph
struct),
various types (rasen::types::*
) and operations (rasen::node::*
) definitions, and SPIR-V compilation utilities (the
ModuleBuilder
struct).
The API is intentionally low-level, as the use case for the core compiler is to act as a backend for a graph-based
material editor in a game engine. It's perfectly possible to use this crate as-is by creating a Graph
struct and
building the module node-by-node, however this method tends to be quite verbose for "static" shaders:
extern crate rasen;
use *;