Unify namespaces

This commit is contained in:
luboslenco
2025-03-09 17:02:12 +01:00
parent 73977a0c38
commit 9c7960f8f8
200 changed files with 7132 additions and 7132 deletions
+10 -10
View File
@@ -27,14 +27,14 @@ typedef struct draw_font {
void draw_init(buffer_t *image_vert, buffer_t *image_frag, buffer_t *colored_vert, buffer_t *colored_frag, buffer_t *text_vert, buffer_t *text_frag);
void draw_begin(void);
void draw_scaled_sub_image(kinc_g5_texture_t *img, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
void draw_scaled_sub_texture(kinc_g5_texture_t *tex, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
void draw_scaled_image(kinc_g5_texture_t *tex, float dx, float dy, float dw, float dh);
void draw_sub_image(kinc_g5_texture_t *tex, float sx, float sy, float sw, float sh, float x, float y);
void draw_image(kinc_g5_texture_t *tex, float x, float y);
void draw_scaled_texture(kinc_g5_texture_t *tex, float dx, float dy, float dw, float dh);
void draw_sub_texture(kinc_g5_texture_t *tex, float sx, float sy, float sw, float sh, float x, float y);
void draw_texture(kinc_g5_texture_t *tex, float x, float y);
void draw_scaled_sub_image(iron_g5_texture_t *img, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
void draw_scaled_sub_texture(iron_g5_texture_t *tex, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
void draw_scaled_image(iron_g5_texture_t *tex, float dx, float dy, float dw, float dh);
void draw_sub_image(iron_g5_texture_t *tex, float sx, float sy, float sw, float sh, float x, float y);
void draw_image(iron_g5_texture_t *tex, float x, float y);
void draw_scaled_texture(iron_g5_texture_t *tex, float dx, float dy, float dw, float dh);
void draw_sub_texture(iron_g5_texture_t *tex, float sx, float sy, float sw, float sh, float x, float y);
void draw_texture(iron_g5_texture_t *tex, float x, float y);
void draw_filled_triangle(float x0, float y0, float x1, float y1, float x2, float y2);
void draw_filled_rect(float x, float y, float width, float height);
void draw_rect(float x, float y, float width, float height, float strength);
@@ -44,7 +44,7 @@ void draw_string(const char *text, float x, float y);
void draw_end(void);
void draw_set_color(uint32_t color);
uint32_t draw_get_color();
void draw_set_pipeline(kinc_g5_pipeline_t *pipeline);
void draw_set_pipeline(iron_g5_pipeline_t *pipeline);
void draw_set_transform(buffer_t *matrix);
bool draw_set_font(draw_font_t *font, int size);
void draw_font_init(draw_font_t *font, void *blob, int font_index);
@@ -58,7 +58,7 @@ float draw_sub_string_width(draw_font_t *font, int font_size, const char *text,
int draw_string_width(draw_font_t *font, int font_size, const char *text);
void draw_set_bilinear_filter(bool bilinear);
void draw_restore_render_target(void);
void draw_set_render_target(kinc_g5_texture_t *target);
void draw_set_render_target(iron_g5_texture_t *target);
void draw_filled_circle(float cx, float cy, float radius, int segments);
void draw_circle(float cx, float cy, float radius, int segments, float strength);