unigi.ext/main.h

20 lines
442 B
C
Raw Normal View History

2024-09-10 23:53:56 +00:00
#ifndef unigi_header_ext_main
#define unigi_header_ext_main
2024-09-13 21:24:46 +00:00
#define unigi_ext_texture_fixedpointdepth 16
2024-09-10 23:53:56 +00:00
#include "types.h"
#include "structs.h"
void unigi_ext_texture_draw(
unigi_ext_type_texture tex,
unigi_ext_type_texture buffer,
unigi_ext_type_rect texbounds,
unigi_ext_type_rect bufbounds
);
void unigi_ext_rect_dimensions(
unigi_ext_type_rect bounds,
unigi_ext_type_2d_coord * width,
unigi_ext_type_2d_coord * height
);
#endif