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

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

Issue 895853003: Update from https://crrev.com/314320 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 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/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index 2b9cd8b90bb374128e4d0751e9642403a9d31159..2ac4d69864c9234aa1674e4caf6b296dfd9deaa0 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -359,6 +359,22 @@ void CopyTexSubImage2D(GLenum target,
}
}
+void CopyTexSubImage3D(GLenum target,
+ GLint level,
+ GLint xoffset,
+ GLint yoffset,
+ GLint zoffset,
+ GLint x,
+ GLint y,
+ GLsizei width,
+ GLsizei height) {
+ gles2::cmds::CopyTexSubImage3D* c =
+ GetCmdSpace<gles2::cmds::CopyTexSubImage3D>();
+ if (c) {
+ c->Init(target, level, xoffset, yoffset, zoffset, x, y, width, height);
+ }
+}
+
void CreateProgram(uint32_t client_id) {
gles2::cmds::CreateProgram* c = GetCmdSpace<gles2::cmds::CreateProgram>();
if (c) {
@@ -1419,6 +1435,16 @@ void TexSubImage3D(GLenum target,
}
}
+void TransformFeedbackVaryingsBucket(GLuint program,
+ uint32_t varyings_bucket_id,
+ GLenum buffermode) {
+ gles2::cmds::TransformFeedbackVaryingsBucket* c =
+ GetCmdSpace<gles2::cmds::TransformFeedbackVaryingsBucket>();
+ if (c) {
+ c->Init(program, varyings_bucket_id, buffermode);
+ }
+}
+
void Uniform1f(GLint location, GLfloat x) {
gles2::cmds::Uniform1f* c = GetCmdSpace<gles2::cmds::Uniform1f>();
if (c) {
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698