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
@@ -0,0 +1,26 @@
//
// imgui_impl_ios.h
// imguiex
//
// Joel Davis (joeld42@gmail.com)
//
#ifndef __imguiex__imgui_impl_ios__
#define __imguiex__imgui_impl_ios__
#include <Foundation/Foundation.h>
#include <UIKit/UIKit.h>
@interface ImGuiHelper : NSObject
- (id) initWithView: (UIView *)view;
- (void)connectServer: (NSString*)serverName;
- (void)render;
- (void)newFrame;
@end
#endif /* defined(__imguiex__imgui_impl_ios__) */