From c9195f997f3e797f03ab90464e4158717198a167 Mon Sep 17 00:00:00 2001 From: skal Date: Sun, 8 Feb 2026 07:40:29 +0100 Subject: style: Apply clang-format to all source files --- tools/seq_compiler.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/seq_compiler.cc') 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"; -- cgit v1.2.3