diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-08 07:40:29 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-08 07:40:29 +0100 |
| commit | c9195f997f3e797f03ab90464e4158717198a167 (patch) | |
| tree | 331304f42870246efdc64cc97ad42de59444ef3a /tools/seq_compiler.cc | |
| parent | b8e6929cafa41681f0b27ac104c9cf1d4e510837 (diff) | |
style: Apply clang-format to all source files
Diffstat (limited to 'tools/seq_compiler.cc')
| -rw-r--r-- | tools/seq_compiler.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/seq_compiler.cc b/tools/seq_compiler.cc index 784bb80..f9409de 100644 --- a/tools/seq_compiler.cc +++ b/tools/seq_compiler.cc @@ -700,7 +700,8 @@ int main(int argc, char* argv[]) { out_file << "}\n\n"; } - out_file << "void LoadTimeline(MainSequence& main_seq, const GpuContext& ctx) {\n"; + out_file << "void LoadTimeline(MainSequence& main_seq, const GpuContext& " + "ctx) {\n"; for (const SequenceEntry& seq : sequences) { out_file << " {\n"; @@ -711,9 +712,8 @@ int main(int argc, char* argv[]) { } for (const EffectEntry& eff : seq.effects) { out_file << " seq->add_effect(std::make_shared<" << eff.class_name - << ">(ctx" << eff.extra_args << "), " - << eff.start << "f, " << eff.end << "f, " << eff.priority - << ");\n"; + << ">(ctx" << eff.extra_args << "), " << eff.start << "f, " + << eff.end << "f, " << eff.priority << ");\n"; } out_file << " main_seq.add_sequence(seq, " << seq.start_time << "f, " << seq.priority << ");\n"; |
