#include <stdlib.h>
Go to the source code of this file.
Classes | |
struct | stbrp_context |
struct | stbrp_node |
struct | stbrp_rect |
Macros | |
#define | STB_RECT_PACK_VERSION 1 |
#define | STBRP_DEF extern |
Typedefs | |
typedef struct stbrp_context | stbrp_context |
typedef unsigned short | stbrp_coord |
typedef struct stbrp_node | stbrp_node |
typedef struct stbrp_rect | stbrp_rect |
Enumerations | |
enum | { STBRP_HEURISTIC_Skyline_default =0, STBRP_HEURISTIC_Skyline_BL_sortHeight = STBRP_HEURISTIC_Skyline_default, STBRP_HEURISTIC_Skyline_BF_sortHeight } |
Functions | |
STBRP_DEF void | stbrp_init_target (stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes) |
STBRP_DEF void | stbrp_pack_rects (stbrp_context *context, stbrp_rect *rects, int num_rects) |
STBRP_DEF void | stbrp_setup_allow_out_of_mem (stbrp_context *context, int allow_out_of_mem) |
STBRP_DEF void | stbrp_setup_heuristic (stbrp_context *context, int heuristic) |
#define STB_RECT_PACK_VERSION 1 |
Definition at line 56 of file stb_rect_pack.h.
#define STBRP_DEF extern |
Definition at line 61 of file stb_rect_pack.h.
typedef struct stbrp_context stbrp_context |
Definition at line 68 of file stb_rect_pack.h.
typedef unsigned short stbrp_coord |
Definition at line 75 of file stb_rect_pack.h.
typedef struct stbrp_node stbrp_node |
Definition at line 69 of file stb_rect_pack.h.
typedef struct stbrp_rect stbrp_rect |
Definition at line 70 of file stb_rect_pack.h.
anonymous enum |
Enumerator | |
---|---|
STBRP_HEURISTIC_Skyline_default | |
STBRP_HEURISTIC_Skyline_BL_sortHeight | |
STBRP_HEURISTIC_Skyline_BF_sortHeight |
Definition at line 147 of file stb_rect_pack.h.
STBRP_DEF void stbrp_init_target | ( | stbrp_context * | context, |
int | width, | ||
int | height, | ||
stbrp_node * | nodes, | ||
int | num_nodes | ||
) |
STBRP_DEF void stbrp_pack_rects | ( | stbrp_context * | context, |
stbrp_rect * | rects, | ||
int | num_rects | ||
) |
STBRP_DEF void stbrp_setup_allow_out_of_mem | ( | stbrp_context * | context, |
int | allow_out_of_mem | ||
) |
STBRP_DEF void stbrp_setup_heuristic | ( | stbrp_context * | context, |
int | heuristic | ||
) |