summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/refresh-ccw.svg
blob: 10cff0eca334aa73762bacdc24941d8632f6b101 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-refresh-ccw"><polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path></svg>
lob: 33d0e30dc856896fd2b6ee0f1fef87ba60044fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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