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

Unified Diff: remoting/client/gl_cursor.h

Issue 2148743005: [Remoting Android] Cursor & Cursor Feedback for OpenGL Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swap BGRA to RGBA Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: remoting/client/gl_cursor.h
diff --git a/remoting/client/gl_cursor.h b/remoting/client/gl_cursor.h
new file mode 100644
index 0000000000000000000000000000000000000000..e0210b3e952750c29288f8db36baee7483edc67c
--- /dev/null
+++ b/remoting/client/gl_cursor.h
@@ -0,0 +1,68 @@
+// Copyright 2016 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 REMOTING_CLIENT_OPENGL_GL_CURSOR_H_
+#define REMOTING_CLIENT_OPENGL_GL_CURSOR_H_
+
+#include <array>
+#include <memory>
+
+#include "base/macros.h"
+
+namespace remoting {
+
+namespace protocol {
+class CursorShapeInfo;
+}
Sergey Ulanov 2016/07/19 00:42:48 // namespace protocol
Yuwei 2016/07/19 20:34:23 Done.
+
+class GlCanvas;
+class GlRenderLayer;
+
+// This class draws the cursor on the canvas.
+class GlCursor {
+ public:
+ GlCursor();
+ ~GlCursor();
+
+ void SetCursorShape(const protocol::CursorShapeInfo& cursor_shape);
+
+ void SetCanvasSize(int width, int height);
+
+ // Sets the cursor hotspot positions. Does nothing if the cursor shape or the
+ // canvas size has not been set.
+ void SetCursorPosition(int x, int y);
+
+ // Draw() will do nothing if cursor is not visible.
+ void SetCursorVisible(bool visible);
+
+ // Sets the canvas on which the cursor will be drawn. Resumes the current
+ // state of the cursor to the context of the new canvas.
+ // If |canvas| is nullptr, nothing will happen when calling Draw().
+ void SetCanvas(GlCanvas* canvas);
+
+ void Draw();
+
+ private:
+ void SetCurrentCursorShape(bool size_changed);
+ bool visible_ = true;
Sergey Ulanov 2016/07/19 00:42:48 add empty line here please
Yuwei 2016/07/19 20:34:23 Done.
+
+ std::unique_ptr<GlRenderLayer> layer_;
+
+ std::unique_ptr<uint8_t[]> current_cursor_data_;
+ int current_cursor_data_size_ = 0;
+ int current_cursor_width_ = 0;
+ int current_cursor_height_ = 0;
+ int current_cursor_hotspot_x_ = 0;
+ int current_cursor_hotspot_y_ = 0;
+
+ int cursor_x_ = 0;
+ int cursor_y_ = 0;
+ int canvas_width_ = 0;
+ int canvas_height_ = 0;
+
+ DISALLOW_COPY_AND_ASSIGN(GlCursor);
+};
+
+} // namespace remoting
+#endif // REMOTING_CLIENT_OPENGL_GL_CURSOR_H_

Powered by Google App Engine
This is Rietveld 408576698