5d83c11169
- cpp/functions/gfx/dag_types: DagStep, DagNodeDef, DagControl (header-only) - cpp/functions/gfx/dag_catalog: 10 hardcoded nodes (4 gen, 3 op, 3 blend) ported from shader-dag-blends.jsx - cpp/functions/gfx/dag_compile: pipeline → GLSL 330 core with fan-in via source_id - cpp/functions/gfx/dag_uniforms: upload u_params[16] via glUniform4fv - cpp/functions/gfx/dag_panel: ImGui pipeline editor (add/remove/reorder/controls) - main.cpp: Code/DAG mode toggle, per-mode compile path and uniforms - gl_loader: +glUniform4fv - rebuild Windows .exe Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
204 B
C++
12 lines
204 B
C++
#pragma once
|
|
#include "gfx/dag_types.h"
|
|
#include <vector>
|
|
|
|
namespace fn::gfx {
|
|
|
|
const std::vector<DagNodeDef>& dag_catalog();
|
|
|
|
const DagNodeDef* dag_find(const std::string& name);
|
|
|
|
} // namespace fn::gfx
|