File indexing completed on 2024-04-28 16:54:29

0001 /*
0002     SPDX-FileCopyrightText: 2017 Roman Gilg <subdiff@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 namespace ColorCorrect
0009 {
0010 // these values needs to be hold in sync with the compositor
0011 static const int MSC_DAY = 86400000;
0012 static const int MIN_TEMPERATURE = 1000;
0013 static const int NEUTRAL_TEMPERATURE = 6500;
0014 static const int DEFAULT_NIGHT_TEMPERATURE = 4500;
0015 static const int FALLBACK_SLOW_UPDATE_TIME = 30; // in minutes
0016 
0017 }