Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: cc/resources/resource_provider.h

Issue 184573002: Use MSAA in GPU rasterization if Skia suggests it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 size_t num_resources() const { return resources_.size(); } 91 size_t num_resources() const { return resources_.size(); }
92 92
93 unsigned num_gpu_rasterization_samples(ResourceFormat) const;
94
93 // Checks whether a resource is in use by a consumer. 95 // Checks whether a resource is in use by a consumer.
94 bool InUseByConsumer(ResourceId id); 96 bool InUseByConsumer(ResourceId id);
95 97
96 bool IsLost(ResourceId id); 98 bool IsLost(ResourceId id);
97 bool AllowOverlay(ResourceId id); 99 bool AllowOverlay(ResourceId id);
98 100
99 // Producer interface. 101 // Producer interface.
100 102
101 ResourceType default_resource_type() const { return default_resource_type_; } 103 ResourceType default_resource_type() const { return default_resource_type_; }
102 ResourceType GetResourceType(ResourceId id); 104 ResourceType GetResourceType(ResourceId id);
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 return format_gl_data_format[format]; 701 return format_gl_data_format[format];
700 } 702 }
701 703
702 inline GLenum GLInternalFormat(ResourceFormat format) { 704 inline GLenum GLInternalFormat(ResourceFormat format) {
703 return GLDataFormat(format); 705 return GLDataFormat(format);
704 } 706 }
705 707
706 } // namespace cc 708 } // namespace cc
707 709
708 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_ 710 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698