twn_rendering.c: rename font_path parameter to font
This commit is contained in:
@ -33,8 +33,8 @@ TWN_API void push_rectangle(Rect rect, Color color);
|
||||
/* pushes a filled circle onto the circle render queue */
|
||||
TWN_API void push_circle(Vec2 position, float radius, Color color);
|
||||
|
||||
TWN_API void push_text(char *string, Vec2 position, int height_px, Color color, const char *font_path);
|
||||
TWN_API int text_get_width(char *string, int height_px, const char *font_path);
|
||||
TWN_API void push_text(char *string, Vec2 position, int height_px, Color color, const char *font);
|
||||
TWN_API int text_get_width(char *string, int height_px, const char *font);
|
||||
|
||||
TWN_API void push_9slice(char *texture_path, int texture_w, int texture_h, int border_thickness, Rect rect, Color color);
|
||||
|
||||
|
Reference in New Issue
Block a user