Files
Aerofoil/GpCommon/GpRenderedGlyphMetrics.h

19 lines
282 B
C
Raw Normal View History

2020-09-12 14:01:51 -04:00
#pragma once
#include <stddef.h>
2020-09-12 14:01:51 -04:00
#include <stdint.h>
struct GpRenderedGlyphMetrics
{
size_t m_glyphDataPitch;
uint32_t m_glyphWidth;
uint32_t m_glyphHeight;
int16_t m_bearingX;
int16_t m_bearingY;
int16_t m_advanceX;
int16_t m_bitmapOffsetX;
int16_t m_bitmapOffsetY;
2020-09-12 14:01:51 -04:00
};