summaryrefslogtreecommitdiff
path: root/src/crossfade.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-07-16 23:15:22 +0200
committerThomas White <taw@physics.org>2019-07-16 23:15:22 +0200
commit03f23ec9b611bf61f439ddde4a8759459be29832 (patch)
treee5ec2bf25b5503a39faab36d1ed75c23d3bd18bd /src/crossfade.h
parent6f0279d8dfb9db1824b2a037569e17bb0d49659a (diff)
Initial crossfade stuff
Diffstat (limited to 'src/crossfade.h')
-rw-r--r--src/crossfade.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/crossfade.h b/src/crossfade.h
new file mode 100644
index 0000000..a698f17
--- /dev/null
+++ b/src/crossfade.h
@@ -0,0 +1,29 @@
+/*
+ * crossfade.h
+ *
+ * Copyright © 2019 Thomas White <taw@bitwiz.me.uk>
+ *
+ * This file is part of NanoLight.
+ *
+ * NanoLight is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef CROSSFADE_H
+#define CROSSFADE_H
+
+extern void calculate_fades(struct lightctx *nl);
+extern void test_fade(struct lightctx *nl);
+
+#endif /* CROSSFADE_H */