| Index: ui/events/touch_ctm.h
|
| diff --git a/ui/events/touch_ctm.h b/ui/events/touch_ctm.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ba65b6198e7d01bc2d3b48011e494469fe171399
|
| --- /dev/null
|
| +++ b/ui/events/touch_ctm.h
|
| @@ -0,0 +1,33 @@
|
| +// 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_CTM_H_
|
| +#define UI_EVENTS_TOUCH_CTM_H_
|
| +
|
| +#include "ui/events/events_base_export.h"
|
| +
|
| +namespace ui {
|
| +
|
| +// Touch coordinate transformation matrix (CTM) 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 output.
|
| +// In Chrome, we use TouchCTM to remap the touch event's location from
|
| +// the screen space to the root window space if the touch event is targeting
|
| +// that root window.
|
| +class EVENTS_BASE_EXPORT TouchCTM {
|
| + public:
|
| + TouchCTM();
|
| +
|
| + float x_scale;
|
| + float x_offset;
|
| + float y_scale;
|
| + float y_offset;
|
| +};
|
| +
|
| +} // namespace ui
|
| +
|
| +#endif // UI_EVENTS_TOUCH_CTM_H_
|
|
|