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

Unified Diff: remoting/client/gl_math.cc

Issue 2148743005: [Remoting Android] Cursor & Cursor Feedback for OpenGL Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback 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
« no previous file with comments | « remoting/client/gl_math.h ('k') | remoting/client/gl_render_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/gl_math.cc
diff --git a/remoting/client/gl_math.cc b/remoting/client/gl_math.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b223ff367344ee5d63becbc75c2940840c04a704
--- /dev/null
+++ b/remoting/client/gl_math.cc
@@ -0,0 +1,66 @@
+// 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.
+
+#include "remoting/client/gl_math.h"
+
+#include <sstream>
+
+namespace {
+
+// | m0, m1, m2, | | Scale_x 0 Offset_x |
+// | m3, m4, m5, | = | 0 Scale_y Offset_y |
+// | m6, m7, m8 | | 0 0 1 |
+
+const int kXScaleKey = 0;
+const int kYScaleKey = 4;
+const int kXOffsetKey = 2;
+const int kYOffsetKey = 5;
+
+} // namespace
+
+namespace remoting {
+
+void NormalizeTransformationMatrix(int view_width,
+ int view_height,
+ int canvas_width,
+ int canvas_height,
+ std::array<float, 9>* matrix) {
+ (*matrix)[kXScaleKey] = canvas_width * (*matrix)[kXScaleKey] / view_width;
+ (*matrix)[kYScaleKey] = canvas_height * (*matrix)[kYScaleKey] / view_height;
+ (*matrix)[kXOffsetKey] /= view_width;
+ (*matrix)[kYOffsetKey] /= view_height;
+}
+
+void FillRectangleVertexPositions(float left,
+ float top,
+ float width,
+ float height,
+ std::array<float, 8>* positions) {
+ (*positions)[0] = left;
+ (*positions)[1] = top;
+
+ (*positions)[2] = left;
+ (*positions)[3] = top + height;
+
+ (*positions)[4] = left + width;
+ (*positions)[5] = top;
+
+ (*positions)[6] = left + width;
+ (*positions)[7] = top + height;
+}
+
+std::string MatrixToString(const float* mat, int num_rows, int num_cols) {
+ std::ostringstream outstream;
+ outstream << "[\n";
+ for (int i = 0; i < num_rows; i++) {
+ for (int j = 0; j < num_cols; j++) {
+ outstream << mat[i * num_cols + j] << ", ";
+ }
+ outstream << "\n";
+ }
+ outstream << "]";
+ return outstream.str();
+}
+
+} // namespace remoting
« no previous file with comments | « remoting/client/gl_math.h ('k') | remoting/client/gl_render_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698