mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 21:34:15 +00:00
15 lines
271 B
C
15 lines
271 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
struct RenderedGlyphMetrics;
|
||
|
|
|
||
|
|
class RenderedFont
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual bool GetGlyph(unsigned int character, const RenderedGlyphMetrics **outMetricsPtr, const void **outData) const = 0;
|
||
|
|
|
||
|
|
virtual void Destroy() = 0;
|
||
|
|
};
|
||
|
|
}
|