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

Side by Side Diff: ui/gfx/mojo/transform_struct_traits.h

Issue 2028573003: Implement gfx::Transform StructTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing build file Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « ui/gfx/mojo/transform.typemap ('k') | ui/gfx/mojo/transform_type_converters.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_GFX_IPC_TRANSFORM_STRUCT_TRAITS_H_
6 #define UI_GFX_IPC_TRANSFORM_STRUCT_TRAITS_H_
7
8 #include "ui/gfx/mojo/transform.mojom.h"
9 #include "ui/gfx/transform.h"
10
11 namespace mojo {
12
13 template <>
14 struct StructTraits<gfx::mojom::Transform, gfx::Transform> {
15 static mojo::Array<float> matrix(const gfx::Transform& transform) {
16 std::vector<float> storage(16);
17 transform.matrix().asRowMajorf(&storage[0]);
18 mojo::Array<float> matrix;
19 matrix.Swap(&storage);
20 return matrix;
21 }
22
23 static bool Read(gfx::mojom::TransformDataView data, gfx::Transform* out) {
24 mojo::Array<float> matrix;
25 if (!data.ReadMatrix(&matrix))
26 return false;
27 out->matrix().setRowMajorf(&matrix.storage()[0]);
28 return true;
29 }
30 };
31
32 } // namespace mojo
33
34 #endif // UI_GFX_IPC_TRANSFORM_STRUCT_TRAITS_H_
OLDNEW
« no previous file with comments | « ui/gfx/mojo/transform.typemap ('k') | ui/gfx/mojo/transform_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698