Chromium Code Reviews

Unified Diff: gpu/command_buffer/client/gles2_implementation.h

Issue 5626008: Exposed support for dynamically enabling extensions in command buffer... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: gpu/command_buffer/client/gles2_implementation.h
===================================================================
--- gpu/command_buffer/client/gles2_implementation.h (revision 68245)
+++ gpu/command_buffer/client/gles2_implementation.h (working copy)
@@ -379,6 +379,10 @@
typedef std::map<uint32, std::set<std::string> > GLStringMap;
GLStringMap gl_strings_;
+ // Similar cache for glGetRequestableExtensionsCHROMIUM. We don't
+ // have an enum for this so handle it separately.
+ std::set<std::string> requestable_extensions_set_;
+
typedef std::map<const void*, MappedBuffer> MappedBufferMap;
MappedBufferMap mapped_buffers_;

Powered by Google App Engine