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

15 lines
256 B
C++

#pragma once
namespace PortabilityLayer
{
struct RenderedGlyphMetrics;
class HostFontRenderedGlyph
{
public:
virtual const RenderedGlyphMetrics &GetMetrics() const = 0;
virtual const void *GetData() const = 0;
virtual void Destroy() = 0;
};
}