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

Unified Diff: ui/events/touch_transformer.h

Issue 191223007: Move touch CTM from X into Chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move the logic of if a touch event should be dispatched to a root window into CanDispatchEvent() Created 6 years, 8 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: ui/events/touch_transformer.h
diff --git a/ui/events/touch_transformer.h b/ui/events/touch_transformer.h
new file mode 100644
index 0000000000000000000000000000000000000000..4960038d94e230fd7d19a3cd9952bf4eb17a897c
--- /dev/null
+++ b/ui/events/touch_transformer.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2014 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 UI_EVENTS_TOUCH_TRANSFORMER_H_
+#define UI_EVENTS_TOUCH_TRANSFORMER_H_
+
+#include "ui/events/events_base_export.h"
+
+namespace ui {
+
+// TouchTransformer is used to map touch events coordinate from screen space
+// to root window space.
+// When touch events are reported from kernel, its coordinate is in device
+// space. After passing through X, its coordinate gets mapped to screen
+// space, e.g. the framebuffer space that is the combination of multiple
+// display outputs.
+// In Chrome, we use TouchTransformer to remap the touch event's location from
+// the screen space to the root window space.
+class EVENTS_BASE_EXPORT TouchTransformer {
oshima 2014/05/01 09:35:42 does this have to be class? can be struct?
Yufeng Shen (Slow to review) 2014/05/01 22:43:48 Done.
+ public:
+ TouchTransformer();
+
+ float x_scale;
+ float x_offset;
+ float y_scale;
+ float y_offset;
+};
+
+} // namespace ui
+
+#endif // UI_EVENTS_TOUCH_TRANSFORMER_H_

Powered by Google App Engine
This is Rietveld 408576698