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