OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef CC_TILE_H_ | 5 #ifndef CC_TILE_H_ |
6 #define CC_TILE_H_ | 6 #define CC_TILE_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 ~Tile(); | 85 ~Tile(); |
86 | 86 |
87 TileManager* tile_manager_; | 87 TileManager* tile_manager_; |
88 gfx::Rect tile_size_; | 88 gfx::Rect tile_size_; |
89 GLenum format_; | 89 GLenum format_; |
90 gfx::Rect rect_inside_picture_; | 90 gfx::Rect rect_inside_picture_; |
91 TileQuality quality_; | 91 TileQuality quality_; |
92 ScopedVector<TileVersion> versions_; | 92 ScopedVector<TileVersion> versions_; |
93 }; | 93 }; |
94 | 94 |
| 95 } // namespace cc |
95 | 96 |
96 } // namespace cc | 97 #endif // CC_TILE_H_ |
97 #endif | |
OLD | NEW |