istereo

view src/istereoAppDelegate.m @ 39:ff055bff6a15

copyright statements and stuff
author John Tsiombikas <nuclear@mutantstargoat.com>
date Sun, 11 Sep 2011 09:03:18 +0300
parents 1bb950d0976b
children
line source
1 /*
2 Stereoscopic tunnel for iOS.
3 Copyright (C) 2011 John Tsiombikas <nuclear@member.fsf.org>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
19 /* XXX this file is mostly generated from Xcode and therefore sucks ass */
21 #import "istereoAppDelegate.h"
22 #import "EAGLView.h"
24 @implementation istereoAppDelegate
26 @synthesize window;
27 @synthesize glView;
29 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
30 {
31 [glView startAnimation];
32 return YES;
33 }
35 - (void)applicationWillResignActive:(UIApplication *)application
36 {
37 [glView stopAnimation];
38 }
40 - (void)applicationDidBecomeActive:(UIApplication *)application
41 {
42 [glView startAnimation];
43 }
45 - (void)applicationWillTerminate:(UIApplication *)application
46 {
47 [glView stopAnimation];
48 }
50 - (void)dealloc
51 {
52 [window release];
53 [glView release];
55 [super dealloc];
56 }
58 @end