-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First build using the new repository
- Loading branch information
Showing
6 changed files
with
823 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#define NK_IMPLEMENTATION | ||
|
||
#define NK_ZERO_COMMAND_MEMORY | ||
#define NK_BUTTON_TRIGGER_ON_RELEASE | ||
|
||
#define NK_INCLUDE_FONT_BAKING | ||
#define NK_INCLUDE_DEFAULT_FONT | ||
#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT | ||
#define NK_INCLUDE_COMMAND_USERDATA | ||
|
||
#define NK_INPUT_MAX 512 | ||
|
||
|
||
// Crash on assertion failure, it is captured as an exception in .NET | ||
#define NK_ASSERT(ex) do { if(!(ex)) { *(int*)0 = 0; } } while(0) | ||
|
||
#include <nuklear.h> |
Oops, something went wrong.