mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
18 lines
279 B
C++
18 lines
279 B
C++
#pragma once
|
|
|
|
#include "FontHacks.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class RenderedFont;
|
|
class HostFont;
|
|
|
|
class FontRenderer
|
|
{
|
|
public:
|
|
virtual RenderedFont *RenderFont(HostFont *font, int size, bool aa, FontHacks fontHacks) = 0;
|
|
|
|
static FontRenderer *GetInstance();
|
|
};
|
|
}
|