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

Unified Diff: gpu/command_buffer/service/gpu_processor.cc

Issue 6623063: Connect up --disable-gl-multisampling to command buffer (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gpu_processor.cc
diff --git a/gpu/command_buffer/service/gpu_processor.cc b/gpu/command_buffer/service/gpu_processor.cc
index b36db6af7ae6e34fe74902065d96111ea8970b8f..5ee2334bee38e04dd608508505959f7e05601479 100644
--- a/gpu/command_buffer/service/gpu_processor.cc
+++ b/gpu/command_buffer/service/gpu_processor.cc
@@ -54,6 +54,7 @@ GPUProcessor::~GPUProcessor() {
bool GPUProcessor::InitializeCommon(gfx::GLContext* context,
const gfx::Size& size,
+ const gles2::DisallowedExtensions& disallowed,
apatrick_chromium 2011/03/07 22:31:40 80 char limit
const char* allowed_extensions,
const std::vector<int32>& attribs,
gles2::GLES2Decoder* parent_decoder,
@@ -90,6 +91,7 @@ bool GPUProcessor::InitializeCommon(gfx::GLContext* context,
// Initialize the decoder with either the view or pbuffer GLContext.
if (!decoder_->Initialize(context,
size,
+ disallowed,
allowed_extensions,
attribs,
parent_decoder,

Powered by Google App Engine
This is Rietveld 408576698