Files
Aerofoil/GpCommon/IGpFontRenderedGlyph.h
2020-09-12 14:01:51 -04:00

11 lines
213 B
C

#pragma once
struct GpRenderedGlyphMetrics;
struct IGpFontRenderedGlyph
{
virtual const GpRenderedGlyphMetrics &GetMetrics() const = 0;
virtual const void *GetData() const = 0;
virtual void Destroy() = 0;
};