| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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_OUTPUT_GL_RENDERER_H_ | 5 #ifndef CC_OUTPUT_GL_RENDERER_H_ |
| 6 #define CC_OUTPUT_GL_RENDERER_H_ | 6 #define CC_OUTPUT_GL_RENDERER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 ResourceFormat current_framebuffer_format_; | 514 ResourceFormat current_framebuffer_format_; |
| 515 | 515 |
| 516 class SyncQuery; | 516 class SyncQuery; |
| 517 std::deque<std::unique_ptr<SyncQuery>> pending_sync_queries_; | 517 std::deque<std::unique_ptr<SyncQuery>> pending_sync_queries_; |
| 518 std::deque<std::unique_ptr<SyncQuery>> available_sync_queries_; | 518 std::deque<std::unique_ptr<SyncQuery>> available_sync_queries_; |
| 519 std::unique_ptr<SyncQuery> current_sync_query_; | 519 std::unique_ptr<SyncQuery> current_sync_query_; |
| 520 bool use_sync_query_; | 520 bool use_sync_query_; |
| 521 bool use_blend_equation_advanced_; | 521 bool use_blend_equation_advanced_; |
| 522 bool use_blend_equation_advanced_coherent_; | 522 bool use_blend_equation_advanced_coherent_; |
| 523 | 523 |
| 524 SkBitmap on_demand_tile_raster_bitmap_; | |
| 525 ResourceId on_demand_tile_raster_resource_id_; | |
| 526 BoundGeometry bound_geometry_; | 524 BoundGeometry bound_geometry_; |
| 527 DISALLOW_COPY_AND_ASSIGN(GLRenderer); | 525 DISALLOW_COPY_AND_ASSIGN(GLRenderer); |
| 528 }; | 526 }; |
| 529 | 527 |
| 530 } // namespace cc | 528 } // namespace cc |
| 531 | 529 |
| 532 #endif // CC_OUTPUT_GL_RENDERER_H_ | 530 #endif // CC_OUTPUT_GL_RENDERER_H_ |
| OLD | NEW |