Volume Cartographer 2.27.0
Graph processing

Volume Cartographer is integrated with the smgl graph processing library. All nodes can be found in the VC::graph library.

Initializing the graph processing system

Include vc/graph.hpp and call volcart::RegisterNodes() before doing anything:

#include <vc/graph.hpp>
int main()
{
}
void RegisterNodes()
Register all VC provided nodes with the smgl library.

Building a graph

See RenderGraphsExample.cpp for an example of how to build a render graph.