Files
Aerofoil/PortabilityLayer/HostFont.h

16 lines
250 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
2019-12-21 18:40:17 -05:00
namespace PortabilityLayer
{
class HostFontRenderedGlyph;
2019-12-21 18:40:17 -05:00
class HostFont
{
public:
virtual void Destroy() = 0;
virtual HostFontRenderedGlyph *Render(uint32_t unicodeCodePoint, unsigned int size) = 0;
2019-12-21 18:40:17 -05:00
};
}