Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/skin/imginvert.cpp

Go to the documentation of this file.
00001 #include "imginvert.h"
00002 
00003 QColor ImgInvert::doColorCorrection(QColor c) {
00004     return QColor(0xff - c.red(),
00005                   0xff - c.green(),
00006                   0xff - c.blue());
00007 }
00008 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines