Index: chrome/browser/android/vr_shell/textures/ui_texture.h |
diff --git a/chrome/browser/android/vr_shell/textures/ui_texture.h b/chrome/browser/android/vr_shell/textures/ui_texture.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cd0d78982a4c7912796389ab15918cff26b8c222 |
--- /dev/null |
+++ b/chrome/browser/android/vr_shell/textures/ui_texture.h |
@@ -0,0 +1,49 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_ANDROID_VR_SHELL_TEXTURES_UI_TEXTURE_H_ |
+#define CHROME_BROWSER_ANDROID_VR_SHELL_TEXTURES_UI_TEXTURE_H_ |
+ |
+#include <memory> |
+ |
+#include "third_party/skia/include/core/SkSurface.h" |
+#include "ui/gfx/geometry/size.h" |
+ |
+namespace cc { |
+class PaintFlags; |
+} // namespace cc |
+ |
+namespace gfx { |
+class Canvas; |
+} // namespace gfx |
+ |
+namespace vr_shell { |
+ |
+class UITexture { |
+ public: |
+ UITexture(int texture_handle, int texture_size); |
+ virtual ~UITexture(); |
+ |
+ void DrawAndLayout(); |
+ void Flush(); |
+ gfx::Size GetSize() const { return size_; } |
cjgrant
2017/04/12 20:38:54
There's a naming convention for simple getters - I
acondor_
2017/04/12 21:21:46
Done.
|
+ |
+ protected: |
+ virtual void Draw(gfx::Canvas* canvas) = 0; |
+ virtual void SetSize() = 0; |
+ void DrawText(gfx::Canvas* canvas, |
+ const std::string& text, |
+ const cc::PaintFlags& flags, |
+ float max_width, |
+ bool v_centered); |
+ |
+ int texture_handle_; |
+ int texture_size_; |
+ gfx::Size size_; |
+ sk_sp<SkSurface> surface_; |
+}; |
+ |
+} // namespace vr_shell |
+ |
+#endif // CHROME_BROWSER_ANDROID_VR_SHELL_TEXTURES_UI_TEXTURE_H_ |