mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-05 15:08:16 +00:00
19 lines
248 B
C
19 lines
248 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
struct RenderedGlyphMetrics
|
||
|
|
{
|
||
|
|
size_t m_glyphDataPitch;
|
||
|
|
|
||
|
|
uint32_t m_glyphWidth;
|
||
|
|
uint32_t m_glyphHeight;
|
||
|
|
|
||
|
|
int16_t m_bearingX;
|
||
|
|
int16_t m_bearingY;
|
||
|
|
int16_t m_advanceX;
|
||
|
|
};
|
||
|
|
}
|