summaryrefslogtreecommitdiff
path: root/tools/seq_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/seq_compiler.py')
-rwxr-xr-xtools/seq_compiler.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/seq_compiler.py b/tools/seq_compiler.py
index 09188a5..2d802b2 100755
--- a/tools/seq_compiler.py
+++ b/tools/seq_compiler.py
@@ -397,8 +397,9 @@ def generate_cpp(seq: SequenceDecl, sorted_effects: List[EffectDecl],
# Use a full #include string to override the path entirely.
CLASS_TO_HEADER = {
'NtscYiq': 'ntsc',
- 'GBufferEffect': '#include "../../cnn_v3/src/gbuffer_effect.h"',
- 'CNNv3Effect': '#include "../../cnn_v3/src/cnn_v3_effect.h"',
+ 'GBufferEffect': '#include "../../cnn_v3/src/gbuffer_effect.h"',
+ 'CNNv3Effect': '#include "../../cnn_v3/src/cnn_v3_effect.h"',
+ 'GBufViewEffect': '#include "../../cnn_v3/src/gbuf_view_effect.h"',
}
includes = set()
for effect in seq.effects: