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

Side by Side Diff: example/HelloWorld.cpp

Issue 1397123002: Move functions from SkGr to SkGrPriv.h (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 9th time's a charm? Created 5 years, 2 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 | « no previous file | gyp/utils.gyp » ('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 "GrContext.h"
13 #include "SkApplication.h" 14 #include "SkApplication.h"
14 #include "SkCanvas.h" 15 #include "SkCanvas.h"
15 #include "SkGradientShader.h" 16 #include "SkGradientShader.h"
16 #include "SkGraphics.h" 17 #include "SkGraphics.h"
17 #include "SkGr.h" 18 #include "SkGr.h"
18 19
19 void application_init() { 20 void application_init() {
20 SkGraphics::Init(); 21 SkGraphics::Init();
21 SkEvent::Init(); 22 SkEvent::Init();
22 } 23 }
(...skipping 160 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 | « no previous file | gyp/utils.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698