OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_RESOURCES_GPU_RASTERIZER_H_ | 5 #ifndef CC_RESOURCES_GPU_RASTERIZER_H_ |
6 #define CC_RESOURCES_GPU_RASTERIZER_H_ | 6 #define CC_RESOURCES_GPU_RASTERIZER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 ResourceFormat resource_format, | 37 ResourceFormat resource_format, |
38 const UpdateTileDrawInfoCallback& update_tile_draw_info) override; | 38 const UpdateTileDrawInfoCallback& update_tile_draw_info) override; |
39 | 39 |
40 void RasterizeSource(bool use_worker_context, | 40 void RasterizeSource(bool use_worker_context, |
41 ResourceProvider::ScopedWriteLockGr* write_lock, | 41 ResourceProvider::ScopedWriteLockGr* write_lock, |
42 const RasterSource* raster_source, | 42 const RasterSource* raster_source, |
43 const gfx::Rect& rect, | 43 const gfx::Rect& rect, |
44 float scale); | 44 float scale); |
45 | 45 |
46 ResourceProvider* resource_provider() { return resource_provider_; } | 46 ResourceProvider* resource_provider() { return resource_provider_; } |
| 47 void ClearCache(); |
47 | 48 |
48 private: | 49 private: |
49 GpuRasterizer(ContextProvider* context_provider, | 50 GpuRasterizer(ContextProvider* context_provider, |
50 ResourceProvider* resource_provider, | 51 ResourceProvider* resource_provider, |
51 bool use_distance_filed_text, | 52 bool use_distance_filed_text, |
52 bool threaded_gpu_rasterization_enabled, | 53 bool threaded_gpu_rasterization_enabled, |
53 int msaa_sample_count); | 54 int msaa_sample_count); |
54 | 55 |
55 using ScopedResourceWriteLocks = | 56 using ScopedResourceWriteLocks = |
56 ScopedPtrVector<ResourceProvider::ScopedWriteLockGr>; | 57 ScopedPtrVector<ResourceProvider::ScopedWriteLockGr>; |
(...skipping 11 matching lines...) Expand all Loading... |
68 bool use_distance_field_text_; | 69 bool use_distance_field_text_; |
69 bool threaded_gpu_rasterization_enabled_; | 70 bool threaded_gpu_rasterization_enabled_; |
70 int msaa_sample_count_; | 71 int msaa_sample_count_; |
71 | 72 |
72 DISALLOW_COPY_AND_ASSIGN(GpuRasterizer); | 73 DISALLOW_COPY_AND_ASSIGN(GpuRasterizer); |
73 }; | 74 }; |
74 | 75 |
75 } // namespace cc | 76 } // namespace cc |
76 | 77 |
77 #endif // CC_RESOURCES_GPU_RASTERIZER_H_ | 78 #endif // CC_RESOURCES_GPU_RASTERIZER_H_ |
OLD | NEW |