diff options
Diffstat (limited to 'gpu/command_buffer/client/gles2_implementation_autogen.h')
-rw-r--r-- | gpu/command_buffer/client/gles2_implementation_autogen.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation_autogen.h b/gpu/command_buffer/client/gles2_implementation_autogen.h index c4b34b9..bb7b253 100644 --- a/gpu/command_buffer/client/gles2_implementation_autogen.h +++ b/gpu/command_buffer/client/gles2_implementation_autogen.h @@ -1,7 +1,14 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + // This file is auto-generated. DO NOT EDIT! // This file is included by gles2_implementation.h to declare the // GL api functions. +#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ +#define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ + void ActiveTexture(GLenum texture) { helper_->ActiveTexture(texture); } @@ -467,7 +474,7 @@ void Scissor(GLint x, GLint y, GLsizei width, GLsizei height) { } void ShaderSource( - GLuint shader, GLsizei count, const char** string, const GLint* length); + GLuint shader, GLsizei count, const char** str, const GLint* length); void StencilFunc(GLenum func, GLint ref, GLuint mask) { helper_->StencilFunc(func, ref, mask); @@ -649,3 +656,5 @@ void SwapBuffers() { helper_->SwapBuffers(); } +#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ + |