godot_voxel/generators/graph/voxel_graph_compiler.cpp
2022-05-14 19:38:39 +01:00

693 lines
24 KiB
C++

#include "voxel_graph_compiler.h"
#include "../../util/container_funcs.h"
#include "../../util/expression_parser.h"
#include "../../util/macros.h"
#include "../../util/profiling.h"
#include "../../util/string_funcs.h"
#include "voxel_graph_node_db.h"
#include <unordered_set>
namespace zylann::voxel {
struct ToConnect {
std::string_view var_name;
ProgramGraph::PortLocation dst;
};
static uint32_t expand_node(ProgramGraph &graph, const ExpressionParser::Node &ep_node, const VoxelGraphNodeDB &db,
std::vector<ToConnect> &to_connect, std::vector<uint32_t> &expanded_node_ids,
Span<const ExpressionParser::Function> functions);
static bool expand_input(ProgramGraph &graph, const ExpressionParser::Node &arg, ProgramGraph::Node &pg_node,
uint32_t pg_node_input_index, const VoxelGraphNodeDB &db, std::vector<ToConnect> &to_connect,
std::vector<uint32_t> &expanded_node_ids, Span<const ExpressionParser::Function> functions) {
switch (arg.type) {
case ExpressionParser::Node::NUMBER: {
const ExpressionParser::NumberNode &arg_nn = reinterpret_cast<const ExpressionParser::NumberNode &>(arg);
pg_node.default_inputs[pg_node_input_index] = arg_nn.value;
} break;
case ExpressionParser::Node::VARIABLE: {
const ExpressionParser::VariableNode &arg_vn =
reinterpret_cast<const ExpressionParser::VariableNode &>(arg);
to_connect.push_back({ arg_vn.name, { pg_node.id, pg_node_input_index } });
} break;
case ExpressionParser::Node::OPERATOR:
case ExpressionParser::Node::FUNCTION: {
const uint32_t dependency_pg_node_id =
expand_node(graph, arg, db, to_connect, expanded_node_ids, functions);
ERR_FAIL_COND_V(dependency_pg_node_id == ProgramGraph::NULL_ID, false);
graph.connect({ dependency_pg_node_id, 0 }, { pg_node.id, pg_node_input_index });
} break;
default:
return false;
}
return true;
}
static ProgramGraph::Node &create_node(
ProgramGraph &graph, const VoxelGraphNodeDB &db, VoxelGeneratorGraph::NodeTypeID node_type_id) {
ProgramGraph::Node *node = create_node_internal(graph, node_type_id, Vector2(), ProgramGraph::NULL_ID);
CRASH_COND(node == nullptr);
return *node;
}
static uint32_t expand_node(ProgramGraph &graph, const ExpressionParser::Node &ep_node, const VoxelGraphNodeDB &db,
std::vector<ToConnect> &to_connect, std::vector<uint32_t> &expanded_node_ids,
Span<const ExpressionParser::Function> functions) {
switch (ep_node.type) {
case ExpressionParser::Node::NUMBER: {
// Note, this code should only run if the whole expression is only a number.
// Constant node inputs don't create a constant node, they just set the default value of the input.
ProgramGraph::Node &pg_node = create_node(graph, db, VoxelGeneratorGraph::NODE_CONSTANT);
const ExpressionParser::NumberNode &nn = reinterpret_cast<const ExpressionParser::NumberNode &>(ep_node);
CRASH_COND(pg_node.params.size() != 1);
pg_node.params[0] = nn.value;
expanded_node_ids.push_back(pg_node.id);
return pg_node.id;
}
case ExpressionParser::Node::VARIABLE: {
// Note, this code should only run if the whole expression is only a variable.
// Variable node inputs don't create a node each time, they are turned into connections in a later pass.
// Here we need a pass-through node, so let's use `var + 0`. It's not a common case anyways.
ProgramGraph::Node &pg_node = create_node(graph, db, VoxelGeneratorGraph::NODE_ADD);
const ExpressionParser::VariableNode &vn =
reinterpret_cast<const ExpressionParser::VariableNode &>(ep_node);
to_connect.push_back({ vn.name, { pg_node.id, 0 } });
CRASH_COND(pg_node.default_inputs.size() != 2);
pg_node.default_inputs[1] = 0;
expanded_node_ids.push_back(pg_node.id);
return pg_node.id;
}
case ExpressionParser::Node::OPERATOR: {
const ExpressionParser::OperatorNode &on =
reinterpret_cast<const ExpressionParser::OperatorNode &>(ep_node);
CRASH_COND(on.n0 == nullptr);
CRASH_COND(on.n1 == nullptr);
VoxelGeneratorGraph::NodeTypeID node_type_id;
switch (on.op) {
case ExpressionParser::OperatorNode::ADD:
node_type_id = VoxelGeneratorGraph::NODE_ADD;
break;
case ExpressionParser::OperatorNode::SUBTRACT:
node_type_id = VoxelGeneratorGraph::NODE_SUBTRACT;
break;
case ExpressionParser::OperatorNode::MULTIPLY:
node_type_id = VoxelGeneratorGraph::NODE_MULTIPLY;
break;
case ExpressionParser::OperatorNode::DIVIDE:
node_type_id = VoxelGeneratorGraph::NODE_DIVIDE;
break;
case ExpressionParser::OperatorNode::POWER:
if (on.n1->type == ExpressionParser::Node::NUMBER) {
// Attempt to use an optimized node if the power is constant
const ExpressionParser::NumberNode &arg1 =
static_cast<const ExpressionParser::NumberNode &>(*on.n1);
const int pi = int(arg1.value);
if (Math::is_equal_approx(arg1.value, pi) && pi >= 0) {
// Constant positive integer
ProgramGraph::Node &pg_node = create_node(graph, db, VoxelGeneratorGraph::NODE_POWI);
expanded_node_ids.push_back(pg_node.id);
CRASH_COND(pg_node.params.size() != 1);
pg_node.params[0] = pi;
ERR_FAIL_COND_V(!expand_input(graph, *on.n0, pg_node, 0, db, to_connect, expanded_node_ids,
functions),
ProgramGraph::NULL_ID);
return pg_node.id;
}
}
// Fallback on generic power function
node_type_id = VoxelGeneratorGraph::NODE_POW;
break;
default:
CRASH_NOW();
break;
}
ProgramGraph::Node &pg_node = create_node(graph, db, node_type_id);
expanded_node_ids.push_back(pg_node.id);
ERR_FAIL_COND_V(!expand_input(graph, *on.n0, pg_node, 0, db, to_connect, expanded_node_ids, functions),
ProgramGraph::NULL_ID);
ERR_FAIL_COND_V(!expand_input(graph, *on.n1, pg_node, 1, db, to_connect, expanded_node_ids, functions),
ProgramGraph::NULL_ID);
return pg_node.id;
}
case ExpressionParser::Node::FUNCTION: {
const ExpressionParser::FunctionNode &fn =
reinterpret_cast<const ExpressionParser::FunctionNode &>(ep_node);
const ExpressionParser::Function *f = ExpressionParser::find_function_by_id(fn.function_id, functions);
CRASH_COND(f == nullptr);
const unsigned int arg_count = f->argument_count;
ProgramGraph::Node &pg_node = create_node(graph, db, VoxelGeneratorGraph::NodeTypeID(fn.function_id));
// TODO Optimization: per-function shortcuts
for (unsigned int arg_index = 0; arg_index < arg_count; ++arg_index) {
const ExpressionParser::Node *arg = fn.args[arg_index].get();
CRASH_COND(arg == nullptr);
ERR_FAIL_COND_V(
!expand_input(graph, *arg, pg_node, arg_index, db, to_connect, expanded_node_ids, functions),
ProgramGraph::NULL_ID);
}
return pg_node.id;
}
default:
return ProgramGraph::NULL_ID;
}
}
static VoxelGraphRuntime::CompilationResult expand_expression_node(ProgramGraph &graph, uint32_t original_node_id,
ProgramGraph::PortLocation &expanded_output_port, std::vector<uint32_t> &expanded_nodes,
const VoxelGraphNodeDB &type_db) {
ZN_PROFILE_SCOPE();
const ProgramGraph::Node &original_node = graph.get_node(original_node_id);
CRASH_COND(original_node.params.size() == 0);
const String code = original_node.params[0];
const CharString code_utf8 = code.utf8();
Span<const ExpressionParser::Function> functions = type_db.get_expression_parser_functions();
// Extract the AST, so we can convert it into graph nodes,
// and benefit from all features of range analysis and buffer processing
ExpressionParser::Result parse_result = ExpressionParser::parse(code_utf8.get_data(), functions);
if (parse_result.error.id != ExpressionParser::ERROR_NONE) {
// Error in expression
const std::string error_message_utf8 = ExpressionParser::to_string(parse_result.error);
VoxelGraphRuntime::CompilationResult result;
result.success = false;
result.node_id = original_node_id;
result.message = String(error_message_utf8.c_str());
return result;
}
if (parse_result.root == nullptr) {
// Expression is empty
VoxelGraphRuntime::CompilationResult result;
result.success = false;
result.node_id = original_node_id;
result.message = "Expression is empty";
return result;
}
std::vector<ToConnect> to_connect;
// Create nodes from the expression's AST and connect them together
const uint32_t expanded_root_node_id = expand_node(
graph, *parse_result.root, VoxelGraphNodeDB::get_singleton(), to_connect, expanded_nodes, functions);
if (expanded_root_node_id == ProgramGraph::NULL_ID) {
VoxelGraphRuntime::CompilationResult result;
result.success = false;
result.node_id = original_node_id;
result.message = "Internal error";
return result;
}
expanded_output_port = { expanded_root_node_id, 0 };
// Add connections from outside the expression to entry nodes of the expression
for (const ToConnect tc : to_connect) {
unsigned int original_port_index;
if (!original_node.find_input_port_by_name(tc.var_name, original_port_index)) {
VoxelGraphRuntime::CompilationResult result;
result.success = false;
result.node_id = original_node_id;
result.message = "Could not resolve expression variable from input ports";
return result;
}
const ProgramGraph::Port &original_port = original_node.inputs[original_port_index];
for (unsigned int j = 0; j < original_port.connections.size(); ++j) {
const ProgramGraph::PortLocation src = original_port.connections[j];
graph.connect(src, tc.dst);
}
}
// Copy first because we'll remove the original node
CRASH_COND(original_node.outputs.size() == 0);
const ProgramGraph::Port original_output_port_copy = original_node.outputs[0];
// Remove the original expression node
graph.remove_node(original_node_id);
// Add connections from the expression's final node.
// Must be done at the end because adding two connections to the same input (old and new) is not allowed.
for (const ProgramGraph::PortLocation dst : original_output_port_copy.connections) {
graph.connect(expanded_output_port, dst);
}
VoxelGraphRuntime::CompilationResult result;
result.success = true;
return result;
}
VoxelGraphRuntime::CompilationResult expand_expression_nodes(
ProgramGraph &graph, const VoxelGraphNodeDB &type_db, GraphRemappingInfo *remap_info) {
ZN_PROFILE_SCOPE();
// Gather expression node IDs first, as expansion could invalidate the iterator
std::vector<uint32_t> expression_node_ids;
graph.for_each_node([&expression_node_ids](ProgramGraph::Node &node) {
if (node.type_id == VoxelGeneratorGraph::NODE_EXPRESSION) {
expression_node_ids.push_back(node.id);
}
});
std::vector<uint32_t> expanded_node_ids;
for (const uint32_t node_id : expression_node_ids) {
ProgramGraph::PortLocation expanded_output_port;
expanded_node_ids.clear();
const VoxelGraphRuntime::CompilationResult result =
expand_expression_node(graph, node_id, expanded_output_port, expanded_node_ids, type_db);
if (!result.success) {
return result;
}
if (remap_info != nullptr) {
remap_info->user_to_expanded_ports.push_back({ { node_id, 0 }, expanded_output_port });
for (const uint32_t expanded_node_id : expanded_node_ids) {
remap_info->expanded_to_user_node_ids.push_back({ expanded_node_id, node_id });
}
}
}
VoxelGraphRuntime::CompilationResult result;
result.success = true;
return result;
}
VoxelGraphRuntime::CompilationResult VoxelGraphRuntime::compile(const ProgramGraph &p_graph, bool debug) {
ZN_PROFILE_SCOPE();
const VoxelGraphNodeDB &type_db = VoxelGraphNodeDB::get_singleton();
ProgramGraph expanded_graph;
expanded_graph.copy_from(p_graph, false);
// TODO Store a remapping to allow debugging with the expanded graph
GraphRemappingInfo remap_info;
const VoxelGraphRuntime::CompilationResult expand_result =
expand_expression_nodes(expanded_graph, type_db, &remap_info);
if (!expand_result.success) {
return expand_result;
}
// Expanding a graph may produce more nodes, not remove any
ERR_FAIL_COND_V(expanded_graph.get_nodes_count() < p_graph.get_nodes_count(),
CompilationResult::make_error("Internal error"));
const VoxelGraphRuntime::CompilationResult result = _compile(expanded_graph, debug, type_db);
if (!result.success) {
clear();
}
for (PortRemap r : remap_info.user_to_expanded_ports) {
_program.user_port_to_expanded_port.insert({ r.original, r.expanded });
}
for (ExpandedNodeRemap r : remap_info.expanded_to_user_node_ids) {
_program.expanded_node_id_to_user_node_id.insert({ r.expanded_node_id, r.original_node_id });
}
// Remap debug nodes from the execution map to user-facing ones
for (uint32_t &debug_node_id : _program.default_execution_map.debug_nodes) {
auto it = _program.expanded_node_id_to_user_node_id.find(debug_node_id);
if (it != _program.expanded_node_id_to_user_node_id.end()) {
debug_node_id = it->second;
}
}
return result;
}
VoxelGraphRuntime::CompilationResult VoxelGraphRuntime::_compile(
const ProgramGraph &graph, bool debug, const VoxelGraphNodeDB &type_db) {
ZN_PROFILE_SCOPE();
clear();
std::vector<uint32_t> order;
std::vector<uint32_t> terminal_nodes;
std::unordered_map<uint32_t, uint32_t> node_id_to_dependency_graph;
// Not using the generic `get_terminal_nodes` function because our terminal nodes do have outputs
graph.for_each_node_const([&terminal_nodes, &type_db](const ProgramGraph::Node &node) {
const VoxelGraphNodeDB::NodeType &type = type_db.get_type(node.type_id);
if (type.category == VoxelGraphNodeDB::CATEGORY_OUTPUT) {
terminal_nodes.push_back(node.id);
}
});
if (!debug) {
// Exclude debug nodes
unordered_remove_if(terminal_nodes, [&graph, &type_db](uint32_t node_id) {
const ProgramGraph::Node &node = graph.get_node(node_id);
const VoxelGraphNodeDB::NodeType &type = type_db.get_type(node.type_id);
return type.debug_only;
});
}
graph.find_dependencies(terminal_nodes, order);
uint32_t xzy_start_index = 0;
// Optimize parts of the graph that only depend on X and Z,
// so they can be moved in the outer loop when blocks are generated, running less times.
// Moves them all at the beginning.
{
std::vector<uint32_t> immediate_deps;
std::unordered_set<uint32_t> nodes_depending_on_y;
std::vector<uint32_t> order_xz;
std::vector<uint32_t> order_xzy;
for (size_t i = 0; i < order.size(); ++i) {
const uint32_t node_id = order[i];
const ProgramGraph::Node &node = graph.get_node(node_id);
bool depends_on_y = false;
if (node.type_id == VoxelGeneratorGraph::NODE_INPUT_Y) {
nodes_depending_on_y.insert(node_id);
depends_on_y = true;
}
if (!depends_on_y) {
immediate_deps.clear();
graph.find_immediate_dependencies(node_id, immediate_deps);
for (size_t j = 0; j < immediate_deps.size(); ++j) {
const uint32_t dep_node_id = immediate_deps[j];
if (nodes_depending_on_y.find(dep_node_id) != nodes_depending_on_y.end()) {
depends_on_y = true;
nodes_depending_on_y.insert(node_id);
break;
}
}
}
if (depends_on_y) {
order_xzy.push_back(node_id);
} else {
order_xz.push_back(node_id);
}
}
xzy_start_index = order_xz.size();
//#ifdef DEBUG_ENABLED
// const uint32_t order_xz_raw_size = order_xz.size();
// const uint32_t *order_xz_raw = order_xz.data();
// const uint32_t order_xzy_raw_size = order_xzy.size();
// const uint32_t *order_xzy_raw = order_xzy.data();
//#endif
size_t i = 0;
for (size_t j = 0; j < order_xz.size(); ++j) {
order[i++] = order_xz[j];
}
for (size_t j = 0; j < order_xzy.size(); ++j) {
order[i++] = order_xzy[j];
}
}
//#ifdef DEBUG_ENABLED
// const uint32_t order_raw_size = order.size();
// const uint32_t *order_raw = order.data();
//#endif
struct MemoryHelper {
std::vector<BufferSpec> &buffer_specs;
unsigned int next_address = 0;
uint16_t add_binding() {
const unsigned int a = next_address;
++next_address;
BufferSpec bs;
bs.address = a;
bs.is_binding = true;
bs.is_constant = false;
bs.users_count = 0;
buffer_specs.push_back(bs);
return a;
}
uint16_t add_var() {
const unsigned int a = next_address;
++next_address;
BufferSpec bs;
bs.address = a;
bs.is_binding = false;
bs.is_constant = false;
bs.users_count = 0;
buffer_specs.push_back(bs);
return a;
}
uint16_t add_constant(float v) {
const unsigned int a = next_address;
++next_address;
BufferSpec bs;
bs.address = a;
bs.constant_value = v;
bs.is_binding = false;
bs.is_constant = true;
bs.users_count = 0;
buffer_specs.push_back(bs);
return a;
}
};
MemoryHelper mem{ _program.buffer_specs };
// Main inputs X, Y, Z
_program.x_input_address = mem.add_binding();
_program.y_input_address = mem.add_binding();
_program.z_input_address = mem.add_binding();
std::vector<uint16_t> &operations = _program.operations;
// Run through each node in order, and turn them into program instructions
for (size_t order_index = 0; order_index < order.size(); ++order_index) {
const uint32_t node_id = order[order_index];
const ProgramGraph::Node &node = graph.get_node(node_id);
const VoxelGraphNodeDB::NodeType &type = type_db.get_type(node.type_id);
CRASH_COND(node.inputs.size() != type.inputs.size());
CRASH_COND(node.outputs.size() != type.outputs.size());
if (order_index == xzy_start_index) {
_program.xzy_start_op_address = operations.size();
}
const unsigned int dg_node_index = _program.dependency_graph.nodes.size();
_program.dependency_graph.nodes.push_back(DependencyGraph::Node());
DependencyGraph::Node &dg_node = _program.dependency_graph.nodes.back();
dg_node.is_input = false;
dg_node.op_address = operations.size();
dg_node.first_dependency = _program.dependency_graph.dependencies.size();
dg_node.end_dependency = dg_node.first_dependency;
dg_node.debug_node_id = node_id;
node_id_to_dependency_graph.insert(std::make_pair(node_id, dg_node_index));
// We still hardcode some of the nodes. Maybe we can abstract them too one day.
switch (node.type_id) {
case VoxelGeneratorGraph::NODE_CONSTANT: {
CRASH_COND(type.outputs.size() != 1);
CRASH_COND(type.params.size() != 1);
const uint16_t a = mem.add_constant(node.params[0].operator float());
_program.output_port_addresses[ProgramGraph::PortLocation{ node_id, 0 }] = a;
// Technically not an input or an output, but is a dependency regardless so treat it like an input
dg_node.is_input = true;
continue;
}
// Input nodes can appear multiple times in the graph, for convenience.
// Multiple instances of the same node will refer to the same data.
case VoxelGeneratorGraph::NODE_INPUT_X:
_program.output_port_addresses[ProgramGraph::PortLocation{ node_id, 0 }] = _program.x_input_address;
dg_node.is_input = true;
continue;
case VoxelGeneratorGraph::NODE_INPUT_Y:
_program.output_port_addresses[ProgramGraph::PortLocation{ node_id, 0 }] = _program.y_input_address;
dg_node.is_input = true;
continue;
case VoxelGeneratorGraph::NODE_INPUT_Z:
_program.output_port_addresses[ProgramGraph::PortLocation{ node_id, 0 }] = _program.z_input_address;
dg_node.is_input = true;
continue;
case VoxelGeneratorGraph::NODE_SDF_PREVIEW:
continue;
}
// Add actual operation
CRASH_COND(node.type_id > 0xff);
if (order_index == xzy_start_index) {
_program.default_execution_map.xzy_start_index = _program.default_execution_map.operation_adresses.size();
}
_program.default_execution_map.operation_adresses.push_back(operations.size());
if (debug) {
// Will be remapped later if the node is an expanded one
_program.default_execution_map.debug_nodes.push_back(node_id);
}
operations.push_back(node.type_id);
// Inputs and outputs use a convention so we can have generic code for them.
// Parameters are more specific, and may be affected by alignment so better just do them by hand
// Add inputs
for (size_t j = 0; j < type.inputs.size(); ++j) {
uint16_t a;
if (node.inputs[j].connections.size() == 0) {
// No input, default it
CRASH_COND(j >= node.default_inputs.size());
float defval = node.default_inputs[j];
a = mem.add_constant(defval);
} else {
ProgramGraph::PortLocation src_port = node.inputs[j].connections[0];
auto address_it = _program.output_port_addresses.find(src_port);
// Previous node ports must have been registered
CRASH_COND(address_it == _program.output_port_addresses.end());
a = address_it->second;
// Register dependency
auto it = node_id_to_dependency_graph.find(src_port.node_id);
CRASH_COND(it == node_id_to_dependency_graph.end());
CRASH_COND(it->second >= _program.dependency_graph.nodes.size());
_program.dependency_graph.dependencies.push_back(it->second);
++dg_node.end_dependency;
}
operations.push_back(a);
BufferSpec &bs = _program.buffer_specs[a];
++bs.users_count;
}
// Add outputs
for (size_t j = 0; j < type.outputs.size(); ++j) {
const uint16_t a = mem.add_var();
// This will be used by next nodes
const ProgramGraph::PortLocation op{ node_id, static_cast<uint32_t>(j) };
_program.output_port_addresses[op] = a;
operations.push_back(a);
}
// Add space for params size, default is no params so size is 0
size_t params_size_index = operations.size();
operations.push_back(0);
// Get params, copy resources when used, and hold a reference to them
std::vector<Variant> params_copy;
params_copy.resize(node.params.size());
for (size_t i = 0; i < node.params.size(); ++i) {
Variant v = node.params[i];
if (v.get_type() == Variant::OBJECT) {
Ref<Resource> res = v;
if (res.is_null()) {
// duplicate() is only available in Resource,
// so we have to limit to this instead of Reference or Object
CompilationResult result;
result.success = false;
result.message = ZN_TTR("A parameter is an object but does not inherit Resource");
result.node_id = node_id;
return result;
}
res = res->duplicate();
_program.ref_resources.push_back(res);
v = res;
}
params_copy[i] = v;
}
if (type.compile_func != nullptr) {
CompileContext ctx(/**node,*/ operations, _program.heap_resources, params_copy);
type.compile_func(ctx);
if (ctx.has_error()) {
CompilationResult result;
result.success = false;
result.message = ctx.get_error_message();
result.node_id = node_id;
return result;
}
const size_t params_size = ctx.get_params_size_in_words();
CRASH_COND(params_size > std::numeric_limits<uint16_t>::max());
operations[params_size_index] = params_size;
}
if (type.category == VoxelGraphNodeDB::CATEGORY_OUTPUT) {
CRASH_COND(node.outputs.size() != 1);
if (_program.outputs_count == _program.outputs.size()) {
CompilationResult result;
result.success = false;
result.message = ZN_TTR("Maximum number of outputs has been reached");
result.node_id = node_id;
return result;
}
{
auto address_it = _program.output_port_addresses.find(ProgramGraph::PortLocation{ node_id, 0 });
// Previous node ports must have been registered
CRASH_COND(address_it == _program.output_port_addresses.end());
OutputInfo &output_info = _program.outputs[_program.outputs_count];
output_info.buffer_address = address_it->second;
output_info.dependency_graph_node_index = dg_node_index;
output_info.node_id = node_id;
++_program.outputs_count;
}
// Add fake user for output ports so they can pass the local users check in optimizations
for (unsigned int j = 0; j < type.outputs.size(); ++j) {
const ProgramGraph::PortLocation loc{ node_id, j };
auto address_it = _program.output_port_addresses.find(loc);
CRASH_COND(address_it == _program.output_port_addresses.end());
BufferSpec &bs = _program.buffer_specs[address_it->second];
// Not expecting existing users on that port
ERR_FAIL_COND_V(bs.users_count != 0, CompilationResult());
++bs.users_count;
}
}
#ifdef VOXEL_DEBUG_GRAPH_PROG_SENTINEL
// Append a special value after each operation
append(operations, VOXEL_DEBUG_GRAPH_PROG_SENTINEL);
#endif
}
_program.buffer_count = mem.next_address;
ZN_PRINT_VERBOSE(format("Compiled voxel graph. Program size: {}b, buffers: {}",
_program.operations.size() * sizeof(uint16_t), _program.buffer_count));
CompilationResult result;
result.success = true;
return result;
}
} // namespace zylann::voxel