| 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_RESOURCES_RESOURCE_PROVIDER_H_ | 5 #ifndef CC_RESOURCES_RESOURCE_PROVIDER_H_ |
| 6 #define CC_RESOURCES_RESOURCE_PROVIDER_H_ | 6 #define CC_RESOURCES_RESOURCE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void InitializeSoftware(); | 81 void InitializeSoftware(); |
| 82 bool InitializeGL(); | 82 bool InitializeGL(); |
| 83 | 83 |
| 84 void DidLoseOutputSurface() { lost_output_surface_ = true; } | 84 void DidLoseOutputSurface() { lost_output_surface_ = true; } |
| 85 | 85 |
| 86 int max_texture_size() const { return max_texture_size_; } | 86 int max_texture_size() const { return max_texture_size_; } |
| 87 ResourceFormat memory_efficient_texture_format() const { | 87 ResourceFormat memory_efficient_texture_format() const { |
| 88 return use_rgba_4444_texture_format_ ? RGBA_4444 : best_texture_format_; | 88 return use_rgba_4444_texture_format_ ? RGBA_4444 : best_texture_format_; |
| 89 } | 89 } |
| 90 ResourceFormat best_texture_format() const { return best_texture_format_; } | 90 ResourceFormat best_texture_format() const { return best_texture_format_; } |
| 91 bool use_sync_query() const { return use_sync_query_; } |
| 91 size_t num_resources() const { return resources_.size(); } | 92 size_t num_resources() const { return resources_.size(); } |
| 92 | 93 |
| 93 // Checks whether a resource is in use by a consumer. | 94 // Checks whether a resource is in use by a consumer. |
| 94 bool InUseByConsumer(ResourceId id); | 95 bool InUseByConsumer(ResourceId id); |
| 95 | 96 |
| 96 bool IsLost(ResourceId id); | 97 bool IsLost(ResourceId id); |
| 97 bool AllowOverlay(ResourceId id); | 98 bool AllowOverlay(ResourceId id); |
| 98 | 99 |
| 99 // Producer interface. | 100 // Producer interface. |
| 100 | 101 |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 return format_gl_data_format[format]; | 700 return format_gl_data_format[format]; |
| 700 } | 701 } |
| 701 | 702 |
| 702 inline GLenum GLInternalFormat(ResourceFormat format) { | 703 inline GLenum GLInternalFormat(ResourceFormat format) { |
| 703 return GLDataFormat(format); | 704 return GLDataFormat(format); |
| 704 } | 705 } |
| 705 | 706 |
| 706 } // namespace cc | 707 } // namespace cc |
| 707 | 708 |
| 708 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_ | 709 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_ |
| OLD | NEW |