41 lines
721 B
C
41 lines
721 B
C
#pragma once
|
|
|
|
#include <std/base.h>
|
|
#include <std/os.h>
|
|
|
|
STRUCT(FontCharacter)
|
|
{
|
|
u32 advance;
|
|
u32 left_bearing;
|
|
u32 x;
|
|
u32 y;
|
|
u32 width;
|
|
u32 height;
|
|
s32 x_offset;
|
|
s32 y_offset;
|
|
};
|
|
|
|
STRUCT(TextureAtlas)
|
|
{
|
|
u32* pointer;
|
|
FontCharacter* characters;
|
|
s32* kerning_tables;
|
|
u32 width;
|
|
u32 height;
|
|
s32 ascent;
|
|
s32 descent;
|
|
s32 line_gap;
|
|
TextureIndex texture;
|
|
};
|
|
|
|
STRUCT(TextureAtlasCreate)
|
|
{
|
|
String font_path;
|
|
u32 text_height;
|
|
};
|
|
|
|
#include <std/render.h>
|
|
|
|
EXPORT TextureAtlas font_texture_atlas_create(Arena* arena, Renderer* renderer, TextureAtlasCreate create);
|
|
EXPORT uint2 texture_atlas_compute_string_rect(String string, const TextureAtlas* atlas);
|