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

Side by Side Diff: example/HelloWorld.cpp

Issue 1314483006: Revert of Make SkGraphics::Term a no-op, stop calling it. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « debugger/debuggermain.cpp ('k') | experimental/SimpleCocoaApp/SimpleApp.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 * 7 *
8 */ 8 */
9 9
10 #include "HelloWorld.h" 10 #include "HelloWorld.h"
11 11
12 #include "gl/GrGLInterface.h" 12 #include "gl/GrGLInterface.h"
13 #include "SkApplication.h" 13 #include "SkApplication.h"
14 #include "SkCanvas.h" 14 #include "SkCanvas.h"
15 #include "SkGradientShader.h" 15 #include "SkGradientShader.h"
16 #include "SkGraphics.h" 16 #include "SkGraphics.h"
17 #include "SkGr.h" 17 #include "SkGr.h"
18 18
19 void application_init() { 19 void application_init() {
20 SkGraphics::Init(); 20 SkGraphics::Init();
21 SkEvent::Init(); 21 SkEvent::Init();
22 } 22 }
23 23
24 void application_term() { 24 void application_term() {
25 SkEvent::Term(); 25 SkEvent::Term();
26 SkGraphics::Term();
26 } 27 }
27 28
28 HelloWorldWindow::HelloWorldWindow(void* hwnd) 29 HelloWorldWindow::HelloWorldWindow(void* hwnd)
29 : INHERITED(hwnd) { 30 : INHERITED(hwnd) {
30 fType = kGPU_DeviceType; 31 fType = kGPU_DeviceType;
31 fRenderTarget = NULL; 32 fRenderTarget = NULL;
32 fRotationAngle = 0; 33 fRotationAngle = 0;
33 this->setTitle(); 34 this->setTitle();
34 this->setUpBackend(); 35 this->setUpBackend();
35 } 36 }
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 setUpBackend(); 184 setUpBackend();
184 this->setTitle(); 185 this->setTitle();
185 this->inval(NULL); 186 this->inval(NULL);
186 } 187 }
187 return true; 188 return true;
188 } 189 }
189 190
190 SkOSWindow* create_sk_window(void* hwnd, int , char** ) { 191 SkOSWindow* create_sk_window(void* hwnd, int , char** ) {
191 return new HelloWorldWindow(hwnd); 192 return new HelloWorldWindow(hwnd);
192 } 193 }
OLDNEW
« no previous file with comments | « debugger/debuggermain.cpp ('k') | experimental/SimpleCocoaApp/SimpleApp.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698