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

Side by Side Diff: tools/viewer/android/Window_android.h

Issue 1944413005: More refactoring for Viewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix up Android Created 4 years, 7 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef Window_android_DEFINED
9 #define Window_android_DEFINED
10
11 #include "../Window.h"
12 #include <android_native_app_glue.h>
13
14 namespace sk_app {
15
16 enum {
17 /**
18 * Leave plenty of space between this item and the ones defined in the glue layer
19 */
20 APP_CMD_INVAL_WINDOW = 64,
21 };
22
23 class Window_android : public Window {
24 public:
25 Window_android() : Window() {}
26 ~Window_android() override {}
27
28 bool init(android_app* app_state);
29 void initDisplay(ANativeWindow* window);
30
31 void setTitle(const char*) override;
32 void show() override {}
33
34 bool attach(BackEndType attachType, int msaaSampleCount) override;
35 void inval() override;
36
37 void paintIfNeeded();
38
39 bool scaleContentToFit() const override { return true; }
40 bool supportsContentRect() const override { return true; }
41 SkRect getContentRect() override { return mContentRect; }
42 void setContentRect(int l, int t, int r, int b) { mContentRect.set(l,t,r,b); }
43
44 private:
45 android_app* mApp = nullptr;
46 SkRect mContentRect;
47 int mSampleCount = 0;
48 };
49
50 } // namespace sk_app
51
52 #endif
OLDNEW
« no previous file with comments | « tools/viewer/android/VulkanTestContext_android.cpp ('k') | tools/viewer/android/Window_android.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698