Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Side by Side Diff: nacltoons/src/app_delegate.cc

Issue 12220140: [nacltoons] Cleanup initial game code. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nacltoons/src/app_delegate.h ('k') | nacltoons/src/frontend.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #include "app_delegate.h" 4 #include "app_delegate.h"
5 #include "frontend.h" 5 #include "frontend.h"
6 6
7 USING_NS_CC; 7 USING_NS_CC;
8 8
9 bool AppDelegate::applicationDidFinishLaunching() { 9 bool AppDelegate::applicationDidFinishLaunching() {
10 CCEGLView* view = CCEGLView::sharedOpenGLView(); 10 CCEGLView* view = CCEGLView::sharedOpenGLView();
11 11
12 CCDirector* director = CCDirector::sharedDirector(); 12 CCDirector* director = CCDirector::sharedDirector();
13 director->setOpenGLView(view); 13 director->setOpenGLView(view);
14 director->setDisplayStats(true); 14 director->setDisplayStats(true);
15 15
16 CCScene* scene = FrontEnd::scene(); 16 // Craete the initial (autorelease) scene and run with it.
noelallen_use_chromium 2013/02/13 00:22:41 Create
17 CCScene* scene = FrontEndScene::create();
17 director->runWithScene(scene); 18 director->runWithScene(scene);
18 return true; 19 return true;
19 } 20 }
OLDNEW
« no previous file with comments | « nacltoons/src/app_delegate.h ('k') | nacltoons/src/frontend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698