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

Side by Side Diff: Source/core/dom/DOMMatrixReadOnly.cpp

Issue 483633002: Add toFloat*Array() methods and use them in layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TestExepectations Created 6 years, 4 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 | « Source/core/dom/DOMMatrixReadOnly.h ('k') | Source/core/dom/DOMMatrixReadOnly.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/dom/DOMMatrix.h" 6 #include "core/dom/DOMMatrix.h"
7 7
8 namespace blink { 8 namespace blink {
9 9
10 bool DOMMatrixReadOnly::is2D() const 10 bool DOMMatrixReadOnly::is2D() const
(...skipping 20 matching lines...) Expand all
31 { 31 {
32 return DOMMatrix::create(this)->scale3dSelf(scale, ox, oy, oz); 32 return DOMMatrix::create(this)->scale3dSelf(scale, ox, oy, oz);
33 } 33 }
34 34
35 DOMMatrix* DOMMatrixReadOnly::scaleNonUniform(double sx, double sy, double sz, 35 DOMMatrix* DOMMatrixReadOnly::scaleNonUniform(double sx, double sy, double sz,
36 double ox, double oy, double oz) 36 double ox, double oy, double oz)
37 { 37 {
38 return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz); 38 return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz);
39 } 39 }
40 40
41 PassRefPtr<Float32Array> DOMMatrixReadOnly::toFloat32Array() const
42 {
43 float array[] = {
44 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(),
45 m_matrix.m21(), m_matrix.m22(), m_matrix.m23(), m_matrix.m24(),
46 m_matrix.m31(), m_matrix.m32(), m_matrix.m33(), m_matrix.m34(),
47 m_matrix.m41(), m_matrix.m42(), m_matrix.m43(), m_matrix.m44()
48 };
49
50 return Float32Array::create(array, 16);
51 }
52
53 PassRefPtr<Float64Array> DOMMatrixReadOnly::toFloat64Array() const
54 {
55 double array[] = {
56 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(),
57 m_matrix.m21(), m_matrix.m22(), m_matrix.m23(), m_matrix.m24(),
58 m_matrix.m31(), m_matrix.m32(), m_matrix.m33(), m_matrix.m34(),
59 m_matrix.m41(), m_matrix.m42(), m_matrix.m43(), m_matrix.m44()
60 };
61
62 return Float64Array::create(array, 16);
63 }
64
41 } // namespace blink 65 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/DOMMatrixReadOnly.h ('k') | Source/core/dom/DOMMatrixReadOnly.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698