summaryrefslogtreecommitdiff
path: root/compute.h
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2025-09-03 23:31:40 +0200
committerTom Smeding <tom@tomsmeding.com>2025-09-03 23:37:53 +0200
commit7e60437d3c064bca402d486be967c43bf4326067 (patch)
tree8b4307b90c942861176d9c705cd760b9fe7b6c6b /compute.h
Initial (with old code)HEADmaster
This includes old code too, perhaps from 2021-05-05, judging from the birth timestamp on the directory. The old code included option parsing and equation solving for fancy mutually-dependent options, but no actual rendering (imagine that).
Diffstat (limited to 'compute.h')
-rw-r--r--compute.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/compute.h b/compute.h
new file mode 100644
index 0000000..5cd8915
--- /dev/null
+++ b/compute.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "image.h"
+#include "options.h"
+
+
+HistImage compute_brot(const Options &options);
+
+// vim: set sw=4 ts=4 noet: