summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/docs/gles2_cmd_format_docs.txt
diff options
context:
space:
mode:
authorgman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-13 09:04:23 +0000
committergman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-13 09:04:23 +0000
commit29a9eb570a57f7c8d2204e18bb11be2b7d565b74 (patch)
treec65da5b390965d788ffd1f5946edafe730af9499 /gpu/command_buffer/docs/gles2_cmd_format_docs.txt
parente8824b5c455da4ecbc012be47b651e28e11828b5 (diff)
downloadchromium_src-29a9eb570a57f7c8d2204e18bb11be2b7d565b74.zip
chromium_src-29a9eb570a57f7c8d2204e18bb11be2b7d565b74.tar.gz
chromium_src-29a9eb570a57f7c8d2204e18bb11be2b7d565b74.tar.bz2
Resubmit CL#1629004 Support for client side buffers
TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/docs/gles2_cmd_format_docs.txt')
-rw-r--r--gpu/command_buffer/docs/gles2_cmd_format_docs.txt15
1 files changed, 15 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 8d1b360..d1f7326 100644
--- a/gpu/command_buffer/docs/gles2_cmd_format_docs.txt
+++ b/gpu/command_buffer/docs/gles2_cmd_format_docs.txt
@@ -2164,4 +2164,19 @@ struct SwapBuffers {
CommandHeader header;
};
+//! Command that corresponds to GetMaxValueInBuffer.
+struct GetMaxValueInBuffer {
+ static const CommandId kCmdId = 436;
+
+ typedef GLuint Result;
+
+ CommandHeader header;
+ uint32 buffer_id; //!< GLuint
+ int32 count; //!< GLsizei
+ uint32 type; //!< GLenum
+ uint32 offset; //!< GLuint
+ uint32 result_shm_id; //!< uint32
+ uint32 result_shm_offset; //!< uint32
+};
+