Files
vb01/fontAsset.cpp
devZoGok e448f7003e GUI quad rendering
improved font and image readers
different mesh VAOs for spatial and GUI quads
2026-07-06 13:01:31 +03:00

10 lines
183 B
C++

#include "fontAsset.h"
namespace vb01{
const FontAsset::Glyph& FontAsset::getGlyph(int id){
for(Glyph &glyph : glyphs)
if(glyph.id == id)
return (const Glyph&) glyph;
}
}