1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-28 16:59:30 +00:00
ctruLua/libs/sftdlib/libsftd/include/texture_atlas.h
2015-08-22 19:10:37 +02:00

37 lines
1 KiB
C

#ifndef TEXTURE_ATLAS_H
#define TEXTURE_ATLAS_H
#include "sf2d.h"
#include "bin_packing_2d.h"
#include "int_htab.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct atlas_htab_entry {
bp2d_rectangle rect;
int bitmap_left;
int bitmap_top;
int advance_x;
int advance_y;
int glyph_size;
} atlas_htab_entry;
typedef struct texture_atlas {
sf2d_texture *tex;
bp2d_node *bp_root;
int_htab *htab;
} texture_atlas;
texture_atlas *texture_atlas_create(int width, int height, sf2d_texfmt format, sf2d_place place);
void texture_atlas_free(texture_atlas *atlas);
int texture_atlas_insert(texture_atlas *atlas, unsigned int character, const void *image, int width, int height, int bitmap_left, int bitmap_top, int advance_x, int advance_y, int glyph_size);
int texture_atlas_exists(texture_atlas *atlas, unsigned int character);
void texture_atlas_get(texture_atlas *atlas, unsigned int character, bp2d_rectangle *rect, int *bitmap_left, int *bitmap_top, int *advance_x, int *advance_y, int *glyph_size);
#ifdef __cplusplus
}
#endif
#endif