16 lines
225 B
C++
16 lines
225 B
C++
|
|
#include <Spectre/Graphics/Font/FontDescription.h>
|
|
|
|
namespace sp {
|
|
|
|
void FontDescription::hinting(bool value)
|
|
{
|
|
m_hinting = value;
|
|
}
|
|
|
|
bool FontDescription::isHintingEnabled() const
|
|
{
|
|
return m_hinting;
|
|
}
|
|
|
|
} // namespace sp
|