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

Side by Side Diff: src/views/unix/skia_unix.cpp

Issue 2229853002: Sample app uses Ganesh before calling SkGraphics::Init(). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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 | « src/views/mac/skia_mac.mm ('k') | src/views/win/skia_win.cpp » ('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 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkApplication.h" 8 #include "SkApplication.h"
9 #include "SkEvent.h" 9 #include "SkEvent.h"
10 #include "SkGraphics.h"
10 #include "SkWindow.h" 11 #include "SkWindow.h"
11 12
12 int main(int argc, char** argv){ 13 int main(int argc, char** argv){
14 SkGraphics::Init();
13 SkOSWindow* window = create_sk_window(nullptr, argc, argv); 15 SkOSWindow* window = create_sk_window(nullptr, argc, argv);
14 16
15 // drain any events that occurred before |window| was assigned. 17 // drain any events that occurred before |window| was assigned.
16 while (SkEvent::ProcessEvent()); 18 while (SkEvent::ProcessEvent());
17 19
18 // Start normal Skia sequence 20 // Start normal Skia sequence
19 application_init(); 21 application_init();
20 22
21 window->loop(); 23 window->loop();
22 24
23 delete window; 25 delete window;
24 application_term(); 26 application_term();
25 return 0; 27 return 0;
26 } 28 }
OLDNEW
« no previous file with comments | « src/views/mac/skia_mac.mm ('k') | src/views/win/skia_win.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698