/* 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 lutRx; std::vector lutRy; std::vector lutBx; std::vector lutBy; };