iOS example working based on modified OpenGL3 example + Synergy

This commit is contained in:
Joel Davis
2015-07-07 21:17:48 -06:00
committed by ocornut
parent f4fc008a2a
commit eee6dab226
25 changed files with 3184 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
//
// debug_hud.h
// imguiex
#ifndef __imguiex__debug_hud__
#define __imguiex__debug_hud__
typedef struct DebugHUD
{
int show_test_window;
int show_example_window;
float rotation_speed;
float cubeColor1[4];
float cubeColor2[4];
} DebugHUD;
#if __cplusplus
extern "C" {
#endif
void DebugHUD_InitDefaults( DebugHUD *hud );
void DebugHUD_DoInterface( DebugHUD *hud );
#if __cplusplus
}
#endif
#endif /* defined(__imguiex__debug_hud__) */