OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. |
3 * Copyright (C) 2009 Torch Mobile, Inc. | 3 * Copyright (C) 2009 Torch Mobile, Inc. |
4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 20 matching lines...) Expand all Loading... |
31 #endif | 31 #endif |
32 | 32 |
33 #include "platform/geometry/FloatBox.h" | 33 #include "platform/geometry/FloatBox.h" |
34 #include "platform/geometry/FloatQuad.h" | 34 #include "platform/geometry/FloatQuad.h" |
35 #include "platform/geometry/FloatRect.h" | 35 #include "platform/geometry/FloatRect.h" |
36 #include "platform/geometry/IntRect.h" | 36 #include "platform/geometry/IntRect.h" |
37 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
38 #include "platform/transforms/AffineTransform.h" | 38 #include "platform/transforms/AffineTransform.h" |
39 #include "platform/transforms/Rotation.h" | 39 #include "platform/transforms/Rotation.h" |
40 | 40 |
41 #include "wtf/Assertions.h" | 41 #include "platform/wtf/Assertions.h" |
42 #include "wtf/MathExtras.h" | 42 #include "platform/wtf/MathExtras.h" |
43 #include "wtf/text/WTFString.h" | 43 #include "platform/wtf/text/WTFString.h" |
44 | 44 |
45 #include <cmath> | 45 #include <cmath> |
46 #include <cstdlib> | 46 #include <cstdlib> |
47 | 47 |
48 #if CPU(X86_64) | 48 #if CPU(X86_64) |
49 #include <emmintrin.h> | 49 #include <emmintrin.h> |
50 #endif | 50 #endif |
51 | 51 |
52 namespace blink { | 52 namespace blink { |
53 | 53 |
(...skipping 1879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1933 decomposition.translateZ, decomposition.scaleX, decomposition.scaleY, | 1933 decomposition.translateZ, decomposition.scaleX, decomposition.scaleY, |
1934 decomposition.scaleZ, decomposition.skewXY, decomposition.skewXZ, | 1934 decomposition.scaleZ, decomposition.skewXY, decomposition.skewXZ, |
1935 decomposition.skewYZ, decomposition.quaternionX, | 1935 decomposition.skewYZ, decomposition.quaternionX, |
1936 decomposition.quaternionY, decomposition.quaternionZ, | 1936 decomposition.quaternionY, decomposition.quaternionZ, |
1937 decomposition.quaternionW, decomposition.perspectiveX, | 1937 decomposition.quaternionW, decomposition.perspectiveX, |
1938 decomposition.perspectiveY, decomposition.perspectiveZ, | 1938 decomposition.perspectiveY, decomposition.perspectiveZ, |
1939 decomposition.perspectiveW); | 1939 decomposition.perspectiveW); |
1940 } | 1940 } |
1941 | 1941 |
1942 } // namespace blink | 1942 } // namespace blink |
OLD | NEW |