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

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: address review comments Created 6 years, 9 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 99
98 // Producer interface. 100 // Producer interface.
99 101
100 ResourceType default_resource_type() const { return default_resource_type_; } 102 ResourceType default_resource_type() const { return default_resource_type_; }
101 ResourceType GetResourceType(ResourceId id); 103 ResourceType GetResourceType(ResourceId id);
102 104
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 return format_gl_data_format[format]; 692 return format_gl_data_format[format];
691 } 693 }
692 694
693 inline GLenum GLInternalFormat(ResourceFormat format) { 695 inline GLenum GLInternalFormat(ResourceFormat format) {
694 return GLDataFormat(format); 696 return GLDataFormat(format);
695 } 697 }
696 698
697 } // namespace cc 699 } // namespace cc
698 700
699 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_ 701 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698