| Index: gpu/command_buffer/client/gles2_implementation_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_autogen.h b/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| index 3d6009a9c1ae7c796a377af578c9b940cea84d1c..9d2d8eb7a3c15bc76d592c8ac3ee3a38fba3462a 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| @@ -255,12 +255,23 @@ void GetActiveUniform(GLuint program,
|
| GLenum* type,
|
| char* name) override;
|
|
|
| +void GetActiveUniformBlockiv(GLuint program,
|
| + GLuint index,
|
| + GLenum pname,
|
| + GLint* params) override;
|
| +
|
| void GetActiveUniformBlockName(GLuint program,
|
| GLuint index,
|
| GLsizei bufsize,
|
| GLsizei* length,
|
| char* name) override;
|
|
|
| +void GetActiveUniformsiv(GLuint program,
|
| + GLsizei count,
|
| + const GLuint* indices,
|
| + GLenum pname,
|
| + GLint* params) override;
|
| +
|
| void GetAttachedShaders(GLuint program,
|
| GLsizei maxcount,
|
| GLsizei* count,
|
| @@ -333,12 +344,25 @@ void GetTexParameterfv(GLenum target, GLenum pname, GLfloat* params) override;
|
|
|
| void GetTexParameteriv(GLenum target, GLenum pname, GLint* params) override;
|
|
|
| +void GetTransformFeedbackVarying(GLuint program,
|
| + GLuint index,
|
| + GLsizei bufsize,
|
| + GLsizei* length,
|
| + GLsizei* size,
|
| + GLenum* type,
|
| + char* name) override;
|
| +
|
| GLuint GetUniformBlockIndex(GLuint program, const char* name) override;
|
|
|
| void GetUniformfv(GLuint program, GLint location, GLfloat* params) override;
|
|
|
| void GetUniformiv(GLuint program, GLint location, GLint* params) override;
|
|
|
| +void GetUniformIndices(GLuint program,
|
| + GLsizei count,
|
| + const char* const* names,
|
| + GLuint* indices) override;
|
| +
|
| GLint GetUniformLocation(GLuint program, const char* name) override;
|
|
|
| void GetVertexAttribPointerv(GLuint index,
|
| @@ -580,6 +604,8 @@ void Uniform4ui(GLint location,
|
|
|
| void Uniform4uiv(GLint location, GLsizei count, const GLuint* v) override;
|
|
|
| +void UniformBlockBinding(GLuint program, GLuint index, GLuint binding) override;
|
| +
|
| void UniformMatrix2fv(GLint location,
|
| GLsizei count,
|
| GLboolean transpose,
|
| @@ -794,6 +820,16 @@ void GetUniformBlocksCHROMIUM(GLuint program,
|
| GLsizei* size,
|
| void* info) override;
|
|
|
| +void GetTransformFeedbackVaryingsCHROMIUM(GLuint program,
|
| + GLsizei bufsize,
|
| + GLsizei* size,
|
| + void* info) override;
|
| +
|
| +void GetUniformsES3CHROMIUM(GLuint program,
|
| + GLsizei bufsize,
|
| + GLsizei* size,
|
| + void* info) override;
|
| +
|
| GLuint CreateStreamTextureCHROMIUM(GLuint texture) override;
|
|
|
| GLuint CreateImageCHROMIUM(ClientBuffer buffer,
|
|
|