missed one file

newui-nuklear
John Tsiombikas 2022-03-14 07:36:56 +02:00
rodzic 4bd72a66a9
commit 0d69f42172
2 zmienionych plików z 31 dodań i 1 usunięć

1
.gitignore vendored
Wyświetl plik

@ -2,5 +2,4 @@
*.d
*.swp
Makefile
ui.h
spnavcfg

31
src/ui.h 100644
Wyświetl plik

@ -0,0 +1,31 @@
#ifndef UI_H_
#define UI_H_
#define NK_INCLUDE_FIXED_TYPES
#define NK_INCLUDE_STANDARD_IO
#define NK_INCLUDE_STANDARD_VARARGS
#define NK_INCLUDE_DEFAULT_ALLOCATOR
#define NK_INCLUDE_FONT_BAKING
#define NK_INCLUDE_DEFAULT_FONT
#include "nuklear.h"
void nkgfx_clip(struct nk_command_scissor *cmd);
void nkgfx_line(struct nk_command_line *cmd);
void nkgfx_curve(struct nk_command_curve *cmd);
void nkgfx_rect(struct nk_command_rect *cmd);
void nkgfx_fillrect(struct nk_command_rect_filled *cmd);
void nkgfx_colrect(struct nk_command_rect_multi_color *cmd);
void nkgfx_circle(struct nk_command_circle *cmd);
void nkgfx_fillcircle(struct nk_command_circle_filled *cmd);
void nkgfx_arc(struct nk_command_arc *cmd);
void nkgfx_fillarc(struct nk_command_arc_filled *cmd);
void nkgfx_tri(struct nk_command_triangle *cmd);
void nkgfx_filltri(struct nk_command_triangle_filled *cmd);
void nkgfx_poly(struct nk_command_polygon *cmd);
void nkgfx_fillpoly(struct nk_command_polygon_filled *cmd);
void nkgfx_polyline(struct nk_command_polyline *cmd);
void nkgfx_text(struct nk_command_text *cmd);
void nkgfx_image(struct nk_command_image *cmd);
#endif /* UI_H_ */