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

Side by Side Diff: cc/layer_quad.h

Issue 11369018: cc: Switch from WebCore::FloatPoint3D to gfx::Point3F and gfx::Vector3dF in the compositor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing base files Created 8 years, 1 month 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 | Annotate | Revision Log
« cc/cc.gyp ('K') | « cc/cc.gyp ('k') | cc/layer_sorter.h » ('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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 5
6 #ifndef CCLayerQuad_h 6 #ifndef CCLayerQuad_h
7 #define CCLayerQuad_h 7 #define CCLayerQuad_h
8 8
9 #include "FloatPoint3D.h"
10 #include "FloatQuad.h" 9 #include "FloatQuad.h"
11 10
12 static const float kAntiAliasingInflateDistance = 0.5f; 11 static const float kAntiAliasingInflateDistance = 0.5f;
13 12
14 namespace cc { 13 namespace cc {
15 14
16 class LayerQuad { 15 class LayerQuad {
17 public: 16 public:
18 class Edge { 17 class Edge {
19 public: 18 public:
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 private: 92 private:
94 Edge m_left; 93 Edge m_left;
95 Edge m_top; 94 Edge m_top;
96 Edge m_right; 95 Edge m_right;
97 Edge m_bottom; 96 Edge m_bottom;
98 }; 97 };
99 98
100 } 99 }
101 100
102 #endif 101 #endif
OLDNEW
« cc/cc.gyp ('K') | « cc/cc.gyp ('k') | cc/layer_sorter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698