diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-11-21 19:07:43 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-11-21 19:07:43 -0800 |
commit | 2ef80983d5d11aec60c4a4fbe0958a261e42fb6b (patch) | |
tree | d16639e745d96ac0b7c0e83a5e923850ad4c2343 /nuklear_ui/blastem_nuklear.h | |
parent | c5f80591a0f8cbc2a6a3ab30b28754a16042c6f3 (diff) |
Initial work on Nuklear-based UI
--HG--
branch : nuklear_ui
Diffstat (limited to 'nuklear_ui/blastem_nuklear.h')
-rw-r--r-- | nuklear_ui/blastem_nuklear.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nuklear_ui/blastem_nuklear.h b/nuklear_ui/blastem_nuklear.h new file mode 100644 index 0000000..bcdeda3 --- /dev/null +++ b/nuklear_ui/blastem_nuklear.h @@ -0,0 +1,16 @@ +#ifndef BLASTEM_NUKLEAR_H_ +#define BLASTEM_NUKLEAR_H_ + +#define NK_INCLUDE_FIXED_TYPES +#define NK_INCLUDE_STANDARD_IO +#define NK_INCLUDE_STANDARD_VARARGS +#define NK_INCLUDE_DEFAULT_ALLOCATOR +#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT +#define NK_INCLUDE_FONT_BAKING +#include <SDL_opengl.h> +#include "nuklear.h" +#include "nuklear_sdl_gles2.h" + +void blastem_nuklear_init(uint8_t file_loaded); + +#endif //BLASTEM_NUKLEAR_H_ |