2014-08-17 12:56:05 +00:00
|
|
|
/* glcommon GL code & font stuff
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <cmath>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "glcommon.h"
|
|
|
|
|
2014-08-09 17:12:37 +00:00
|
|
|
float brightness(QColor color) {
|
|
|
|
return color.redF()*0.299 + color.greenF()*0.587 + color.blueF()*0.114;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-16 02:15:19 +00:00
|
|
|
QColor brighten(QColor color, float mult)
|
|
|
|
{
|
|
|
|
int cr, cg, cb;
|
|
|
|
|
|
|
|
cr = color.red();
|
|
|
|
cg = color.green();
|
|
|
|
cb = color.blue();
|
|
|
|
|
|
|
|
if (cr < 64) { cr = 64; }
|
|
|
|
|
|
|
|
if (cg < 64) { cg = 64; }
|
|
|
|
|
|
|
|
if (cb < 64) { cb = 64; }
|
|
|
|
|
|
|
|
cr *= mult;
|
|
|
|
cg *= mult;
|
|
|
|
cb *= mult;
|
|
|
|
|
|
|
|
if (cr > 255) { cr = 255; }
|
|
|
|
|
|
|
|
if (cg > 255) { cg = 255; }
|
|
|
|
|
|
|
|
if (cb > 255) { cb = 255; }
|
|
|
|
|
|
|
|
return QColor(cr, cg, cb, 255);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-17 14:38:15 +00:00
|
|
|
#ifdef BUILD_WITH_MSVC
|
2014-05-09 07:05:54 +00:00
|
|
|
|
|
|
|
#if (_MSC_VER < 1800)
|
2011-12-17 14:38:15 +00:00
|
|
|
double round(double number)
|
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
return number < 0.0 ? ceil(number - 0.5) : floor(number + 0.5);
|
2011-12-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-05-09 07:05:54 +00:00
|
|
|
#endif
|
2011-12-17 14:38:15 +00:00
|
|
|
|
2014-09-16 02:15:19 +00:00
|
|
|
|