Michaël Lemaire
4daf92f3dd
paysages : Started material editor dialog (WIP). git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@331 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
25 lines
476 B
C
25 lines
476 B
C
#ifndef _PAYSAGES_QT_TOOLS_H_
|
|
#define _PAYSAGES_QT_TOOLS_H_
|
|
|
|
#include <QColor>
|
|
|
|
#include "../lib_paysages/shared/types.h"
|
|
#include "../lib_paysages/color.h"
|
|
|
|
static inline QColor colorToQColor(Color color)
|
|
{
|
|
colorNormalize(&color);
|
|
return QColor(color.r * 255.0, color.g * 255.0, color.b * 255.0, color.a * 255.0);
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
#include <QDebug>
|
|
static inline void logDebug(QString string)
|
|
{
|
|
qDebug() << string;
|
|
}
|
|
#else
|
|
#define logDebug(_x_) ;
|
|
#endif
|
|
|
|
#endif
|