1
0
Fork 0
spectre/source/Graphics/Font/FontDriver.cpp
2016-01-10 09:26:43 +01:00

12 lines
No EOL
138 B
C++

#include "FontDriver.h"
FontDriver::FontDriver() :
m_hinting (true)
{
}
void FontDriver::setHinting(bool value)
{
m_hinting = value;
}