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

Side by Side Diff: tools/viewer/sk_app/RasterWindowContext.h

Issue 2041193004: Implement Raster Backend on Android Viewer App (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Merge Created 4 years, 6 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 | « tools/viewer/Viewer.cpp ('k') | tools/viewer/sk_app/Window.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 /*
3 * Copyright 2016 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8 #ifndef RasterWindowContext_DEFINED
9 #define RasterWindowContext_DEFINED
10
11 #include "WindowContext.h"
12
13 namespace sk_app {
14
15 class RasterWindowContext : public WindowContext {
16 public:
17 // This is defined in the platform .cpp file
18 static RasterWindowContext* Create(void* platformData, const DisplayParams& params);
19
20 // Explicitly convert nullptr to GrBackendContext is needed for compiling
21 GrBackendContext getBackendContext() override { return (GrBackendContext) nu llptr; }
22
23 protected:
24 bool isGpuContext() override { return false; }
25 };
26
27 } // namespace sk_app
28
29 #endif
OLDNEW
« no previous file with comments | « tools/viewer/Viewer.cpp ('k') | tools/viewer/sk_app/Window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698