summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/cac_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/rpi/controller/cac_status.h')
-rw-r--r--src/ipa/rpi/controller/cac_status.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ipa/rpi/controller/cac_status.h b/src/ipa/rpi/controller/cac_status.h
new file mode 100644
index 00000000..475d4c5c
--- /dev/null
+++ b/src/ipa/rpi/controller/cac_status.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: BSD-2-Clause */
+/*
+ * Copyright (C) 2023 Raspberry Pi Ltd
+ *
+ * CAC (Chromatic Abberation Correction) algorithm status
+ */
+#pragma once
+
+#include "pwl.h"
+
+struct CacStatus {
+ std::vector<double> lutRx;
+ std::vector<double> lutRy;
+ std::vector<double> lutBx;
+ std::vector<double> lutBy;
+};