diff options
author | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-08 22:00:10 +0000 |
---|---|---|
committer | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-08 22:00:10 +0000 |
commit | 4e8a5b125ab20cdeeba546c8c656062165087afa (patch) | |
tree | 4e7cbddda9de296df908c13be3df6901a94ed0e4 /gpu/command_buffer/docs | |
parent | b2134acfa36836b9ec250c02fc83f75f3a2073d7 (diff) | |
download | chromium_src-4e8a5b125ab20cdeeba546c8c656062165087afa.zip chromium_src-4e8a5b125ab20cdeeba546c8c656062165087afa.tar.gz chromium_src-4e8a5b125ab20cdeeba546c8c656062165087afa.tar.bz2 |
Resubmit CL http://codereview.chromium.org/1992008/
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/2013010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/docs')
-rw-r--r-- | gpu/command_buffer/docs/gles2_cmd_format_docs.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gpu/command_buffer/docs/gles2_cmd_format_docs.txt b/gpu/command_buffer/docs/gles2_cmd_format_docs.txt index 73882c4..3a08c1a 100644 --- a/gpu/command_buffer/docs/gles2_cmd_format_docs.txt +++ b/gpu/command_buffer/docs/gles2_cmd_format_docs.txt @@ -2214,4 +2214,12 @@ struct RegisterSharedIds { uint32 ids_shm_offset; //!< uint32 }; +//! Command that enables or disables command buffer specific features. +struct CommandBufferEnable { + static const CommandId kCmdId = 442; + + CommandHeader header; + uint32 cap; //!< GLenum + uint32 enable; //!< GLboolean +}; |