Files
Aerofoil/PortabilityLayer/HostFont.h
2019-12-23 17:43:10 -05:00

16 lines
250 B
C++

#pragma once
#include <stdint.h>
namespace PortabilityLayer
{
class HostFontRenderedGlyph;
class HostFont
{
public:
virtual void Destroy() = 0;
virtual HostFontRenderedGlyph *Render(uint32_t unicodeCodePoint, unsigned int size) = 0;
};
}