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

Unified Diff: gpu/command_buffer/service/context_group.h

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/context_group.h
diff --git a/gpu/command_buffer/service/context_group.h b/gpu/command_buffer/service/context_group.h
index f3ae4b7c15162827d9c2975f480c5b0c968cc562..06b3001d1261da3bc1625e10bdfa7ea259a1e2c3 100644
--- a/gpu/command_buffer/service/context_group.h
+++ b/gpu/command_buffer/service/context_group.h
@@ -27,6 +27,7 @@ class RenderbufferManager;
class ProgramManager;
class ShaderManager;
class TextureManager;
+typedef struct DisallowedExtensions DisallowedExtensions;
apatrick_chromium 2011/03/07 22:31:40 Can this just be struct DisallowedExtensions;
// A Context Group helps manage multiple GLES2Decoders that share
// resources.
@@ -38,7 +39,8 @@ class ContextGroup : public base::RefCounted<ContextGroup> {
~ContextGroup();
// This should only be called by GLES2Decoder.
- bool Initialize(const char* allowed_features);
+ bool Initialize(const DisallowedExtensions& disallowed,
+ const char* allowed_features);
zmo 2011/03/07 23:34:29 @gman: will there ever a conflict between disallow
// Sets the ContextGroup has having a lost context.
void set_have_context(bool have_context) {

Powered by Google App Engine
This is Rietveld 408576698