1
0
Fork 0
spectre/source/Graphics/Font/FontDriver.cpp

16 lines
174 B
C++

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