Index: gpu/command_buffer/service/context_group.h |
diff --git a/gpu/command_buffer/service/context_group.h b/gpu/command_buffer/service/context_group.h |
index dce75c6e6e9b8785da6265b7974e0899d49c3535..41eb2f124a6e02b32fbccd1d37bf0f18624ce567 100644 |
--- a/gpu/command_buffer/service/context_group.h |
+++ b/gpu/command_buffer/service/context_group.h |
@@ -123,6 +123,10 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> { |
return max_draw_buffers_; |
} |
+ uint32 max_dual_source_draw_buffers() const { |
+ return max_dual_source_draw_buffers_; |
+ } |
+ |
FeatureInfo* feature_info() { |
return feature_info_.get(); |
} |
@@ -273,6 +277,7 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> { |
uint32 max_vertex_uniform_vectors_; |
uint32 max_color_attachments_; |
uint32 max_draw_buffers_; |
+ uint32 max_dual_source_draw_buffers_; |
ProgramCache* program_cache_; |