summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/docs
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/command_buffer/docs')
-rw-r--r--gpu/command_buffer/docs/gles2_cmd_format_docs.txt8
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
+};