Files
Aerofoil/GpCommon/IGpFontRenderedGlyph.h

11 lines
213 B
C
Raw Normal View History

2020-09-12 14:01:51 -04:00
#pragma once
struct GpRenderedGlyphMetrics;
struct IGpFontRenderedGlyph
{
virtual const GpRenderedGlyphMetrics &GetMetrics() const = 0;
virtual const void *GetData() const = 0;
virtual void Destroy() = 0;
};