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

Unified Diff: gpu/command_buffer/common/gles2_cmd_format.h

Issue 661220: Added support for glGetString, glGetShaderSource,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
« no previous file with comments | « gpu/command_buffer/common/GLES2/gl2types.h ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/common/gles2_cmd_format.h
===================================================================
--- gpu/command_buffer/common/gles2_cmd_format.h (revision 40176)
+++ gpu/command_buffer/common/gles2_cmd_format.h (working copy)
@@ -93,6 +93,8 @@
static const CommandId kCmdId = kGetAttribLocation;
static const cmd::ArgFlags kArgFlags = cmd::kFixed;
+ typedef GLint Result;
+
static uint32 ComputeSize() {
return static_cast<uint32>(sizeof(ValueType)); // NOLINT
}
@@ -156,6 +158,8 @@
static const CommandId kCmdId = kGetAttribLocationImmediate;
static const cmd::ArgFlags kArgFlags = cmd::kAtLeastN;
+ typedef GLint Result;
+
static uint32 ComputeDataSize(const char* s) {
return strlen(s);
}
@@ -213,6 +217,8 @@
static const CommandId kCmdId = kGetUniformLocation;
static const cmd::ArgFlags kArgFlags = cmd::kFixed;
+ typedef GLint Result;
+
static uint32 ComputeSize() {
return static_cast<uint32>(sizeof(ValueType)); // NOLINT
}
@@ -276,6 +282,8 @@
static const CommandId kCmdId = kGetUniformLocationImmediate;
static const cmd::ArgFlags kArgFlags = cmd::kAtLeastN;
+ typedef GLint Result;
+
static uint32 ComputeDataSize(const char* s) {
return strlen(s);
}
« no previous file with comments | « gpu/command_buffer/common/GLES2/gl2types.h ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698