| 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_TILES_PICTURE_LAYER_TILING_H_ | 5 #ifndef CC_TILES_PICTURE_LAYER_TILING_H_ |
| 6 #define CC_TILES_PICTURE_LAYER_TILING_H_ | 6 #define CC_TILES_PICTURE_LAYER_TILING_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 gfx::Rect current_eventually_rect_; | 396 gfx::Rect current_eventually_rect_; |
| 397 // Other properties used for tile iteration and prioritization. | 397 // Other properties used for tile iteration and prioritization. |
| 398 float current_content_to_screen_scale_; | 398 float current_content_to_screen_scale_; |
| 399 Occlusion current_occlusion_in_layer_space_; | 399 Occlusion current_occlusion_in_layer_space_; |
| 400 | 400 |
| 401 bool has_visible_rect_tiles_; | 401 bool has_visible_rect_tiles_; |
| 402 bool has_skewport_rect_tiles_; | 402 bool has_skewport_rect_tiles_; |
| 403 bool has_soon_border_rect_tiles_; | 403 bool has_soon_border_rect_tiles_; |
| 404 bool has_eventually_rect_tiles_; | 404 bool has_eventually_rect_tiles_; |
| 405 bool all_tiles_done_; | 405 bool all_tiles_done_; |
| 406 bool invalidated_since_last_compute_priority_rects_; |
| 406 | 407 |
| 407 private: | 408 private: |
| 408 DISALLOW_COPY_AND_ASSIGN(PictureLayerTiling); | 409 DISALLOW_COPY_AND_ASSIGN(PictureLayerTiling); |
| 409 }; | 410 }; |
| 410 | 411 |
| 411 } // namespace cc | 412 } // namespace cc |
| 412 | 413 |
| 413 #endif // CC_TILES_PICTURE_LAYER_TILING_H_ | 414 #endif // CC_TILES_PICTURE_LAYER_TILING_H_ |
| OLD | NEW |