mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-14 07:59:44 +03:00
Refactor all the source files in src/ipa/raspberrypi/ to match the recommended formatting guidelines for the libcamera project. The vast majority of changes in this commit comprise of switching from snake_case to CamelCase, and starting class member functions with a lower case character. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21 lines
503 B
C++
21 lines
503 B
C++
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/*
|
|
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
|
|
*
|
|
* ccm_algorithm.hpp - CCM (colour correction matrix) control algorithm interface
|
|
*/
|
|
#pragma once
|
|
|
|
#include "algorithm.hpp"
|
|
|
|
namespace RPiController {
|
|
|
|
class CcmAlgorithm : public Algorithm
|
|
{
|
|
public:
|
|
CcmAlgorithm(Controller *controller) : Algorithm(controller) {}
|
|
// A CCM algorithm must provide the following:
|
|
virtual void setSaturation(double saturation) = 0;
|
|
};
|
|
|
|
} // namespace RPiController
|