diff --git a/examples/ios/GLKit/src/main.mm b/examples/ios/GLKit/src/main.mm deleted file mode 100644 index 89fed4cd572..00000000000 --- a/examples/ios/GLKit/src/main.mm +++ /dev/null @@ -1,23 +0,0 @@ -#include "ofApp.h" - -int main() { - - // here are the most commonly used iOS window settings. - //------------------------------------------------------ - ofiOSWindowSettings settings; - settings.enableRetina = true; // enables retina resolution if the device supports it. - settings.enableDepth = false; // enables depth buffer for 3d drawing. - settings.enableAntiAliasing = false; // enables anti-aliasing which smooths out graphics on the screen. - settings.numOfAntiAliasingSamples = 0; // number of samples used for anti-aliasing. - settings.enableHardwareOrientation = false; // enables native view orientation. - settings.enableHardwareOrientationAnimation = false; // enables native orientation changes to be animated. - settings.glesVersion = OFXIOS_RENDERER_ES3; // type of renderer to use, ES1, ES2, ES3 - settings.windowControllerType = ofxiOSWindowControllerType::GL_KIT; // Window Controller Type - settings.colorType = ofxiOSRendererColorFormat::RGBA8888; // color format used default RGBA8888 - settings.depthType = ofxiOSRendererDepthFormat::DEPTH_NONE; // depth format (16/24) if depth enabled - settings.stencilType = ofxiOSRendererStencilFormat::STENCIL_NONE; // stencil mode - settings.windowMode = OF_FULLSCREEN; - ofCreateWindow(settings); - - return ofRunApp(new ofApp); -} diff --git a/examples/ios/GLKit/src/ofApp.h b/examples/ios/GLKit/src/ofApp.h deleted file mode 100644 index 12ba9ba067b..00000000000 --- a/examples/ios/GLKit/src/ofApp.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include "ofxiOS.h" - -class ofApp : public ofxiOSApp { - - public: - void setup(); - void update(); - void draw(); - void exit(); - - void touchDown(ofTouchEventArgs & touch); - void touchMoved(ofTouchEventArgs & touch); - void touchUp(ofTouchEventArgs & touch); - void touchDoubleTap(ofTouchEventArgs & touch); - void touchCancelled(ofTouchEventArgs & touch); - - void lostFocus(); - void gotFocus(); - void gotMemoryWarning(); - void deviceOrientationChanged(int newOrientation); - -}; - - diff --git a/examples/ios/GLKit/src/ofApp.mm b/examples/ios/GLKit/src/ofApp.mm deleted file mode 100644 index c0260d06aeb..00000000000 --- a/examples/ios/GLKit/src/ofApp.mm +++ /dev/null @@ -1,66 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - -} - -//-------------------------------------------------------------- -void ofApp::update(){ - -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - -} - -//-------------------------------------------------------------- -void ofApp::exit(){ - -} - -//-------------------------------------------------------------- -void ofApp::touchDown(ofTouchEventArgs & touch){ - -} - -//-------------------------------------------------------------- -void ofApp::touchMoved(ofTouchEventArgs & touch){ - -} - -//-------------------------------------------------------------- -void ofApp::touchUp(ofTouchEventArgs & touch){ - -} - -//-------------------------------------------------------------- -void ofApp::touchDoubleTap(ofTouchEventArgs & touch){ - -} - -//-------------------------------------------------------------- -void ofApp::touchCancelled(ofTouchEventArgs & touch){ - -} - -//-------------------------------------------------------------- -void ofApp::lostFocus(){ - -} - -//-------------------------------------------------------------- -void ofApp::gotFocus(){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMemoryWarning(){ - -} - -//-------------------------------------------------------------- -void ofApp::deviceOrientationChanged(int newOrientation){ - -}