| Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| index f852f0a26acf5c52d5fc13c454a908de4b636e9e..fd08afe2185b2ff2e820b7d2f3ce01acae57f0cb 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -962,6 +962,55 @@ void GLES2MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
|
| void GLES2MatrixLoadIdentityCHROMIUM(GLenum matrixMode) {
|
| gles2::GetGLContext()->MatrixLoadIdentityCHROMIUM(matrixMode);
|
| }
|
| +GLuint GLES2GenPathsCHROMIUM(GLsizei range) {
|
| + return gles2::GetGLContext()->GenPathsCHROMIUM(range);
|
| +}
|
| +void GLES2DeletePathsCHROMIUM(GLuint path, GLsizei range) {
|
| + gles2::GetGLContext()->DeletePathsCHROMIUM(path, range);
|
| +}
|
| +GLboolean GLES2IsPathCHROMIUM(GLuint path) {
|
| + return gles2::GetGLContext()->IsPathCHROMIUM(path);
|
| +}
|
| +void GLES2PathCommandsCHROMIUM(GLuint path,
|
| + GLsizei numCommands,
|
| + const GLubyte* commands,
|
| + GLsizei numCoords,
|
| + const GLfloat* coords) {
|
| + gles2::GetGLContext()->PathCommandsCHROMIUM(
|
| + path, numCommands, commands, numCoords, coords);
|
| +}
|
| +void GLES2PathParameterfCHROMIUM(GLuint path, GLenum pname, GLfloat value) {
|
| + gles2::GetGLContext()->PathParameterfCHROMIUM(path, pname, value);
|
| +}
|
| +void GLES2PathParameteriCHROMIUM(GLuint path, GLenum pname, GLint value) {
|
| + gles2::GetGLContext()->PathParameteriCHROMIUM(path, pname, value);
|
| +}
|
| +void GLES2PathStencilFuncCHROMIUM(GLenum func, GLint ref, GLuint mask) {
|
| + gles2::GetGLContext()->PathStencilFuncCHROMIUM(func, ref, mask);
|
| +}
|
| +void GLES2StencilFillPathCHROMIUM(GLuint path, GLenum fillMode, GLuint mask) {
|
| + gles2::GetGLContext()->StencilFillPathCHROMIUM(path, fillMode, mask);
|
| +}
|
| +void GLES2StencilStrokePathCHROMIUM(GLuint path, GLint reference, GLuint mask) {
|
| + gles2::GetGLContext()->StencilStrokePathCHROMIUM(path, reference, mask);
|
| +}
|
| +void GLES2CoverFillPathCHROMIUM(GLuint path) {
|
| + gles2::GetGLContext()->CoverFillPathCHROMIUM(path);
|
| +}
|
| +void GLES2CoverStrokePathCHROMIUM(GLuint path) {
|
| + gles2::GetGLContext()->CoverStrokePathCHROMIUM(path);
|
| +}
|
| +void GLES2StencilThenCoverFillPathCHROMIUM(GLuint path,
|
| + GLenum fillMode,
|
| + GLuint mask) {
|
| + gles2::GetGLContext()->StencilThenCoverFillPathCHROMIUM(path, fillMode, mask);
|
| +}
|
| +void GLES2StencilThenCoverStrokePathCHROMIUM(GLuint path,
|
| + GLint reference,
|
| + GLuint mask) {
|
| + gles2::GetGLContext()->StencilThenCoverStrokePathCHROMIUM(
|
| + path, reference, mask);
|
| +}
|
|
|
| namespace gles2 {
|
|
|
| @@ -1828,6 +1877,59 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glMatrixLoadIdentityCHROMIUM),
|
| },
|
| {
|
| + "glGenPathsCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glGenPathsCHROMIUM),
|
| + },
|
| + {
|
| + "glDeletePathsCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glDeletePathsCHROMIUM),
|
| + },
|
| + {
|
| + "glIsPathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glIsPathCHROMIUM),
|
| + },
|
| + {
|
| + "glPathCommandsCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glPathCommandsCHROMIUM),
|
| + },
|
| + {
|
| + "glPathParameterfCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glPathParameterfCHROMIUM),
|
| + },
|
| + {
|
| + "glPathParameteriCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glPathParameteriCHROMIUM),
|
| + },
|
| + {
|
| + "glPathStencilFuncCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glPathStencilFuncCHROMIUM),
|
| + },
|
| + {
|
| + "glStencilFillPathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glStencilFillPathCHROMIUM),
|
| + },
|
| + {
|
| + "glStencilStrokePathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glStencilStrokePathCHROMIUM),
|
| + },
|
| + {
|
| + "glCoverFillPathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glCoverFillPathCHROMIUM),
|
| + },
|
| + {
|
| + "glCoverStrokePathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glCoverStrokePathCHROMIUM),
|
| + },
|
| + {
|
| + "glStencilThenCoverFillPathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glStencilThenCoverFillPathCHROMIUM),
|
| + },
|
| + {
|
| + "glStencilThenCoverStrokePathCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(
|
| + glStencilThenCoverStrokePathCHROMIUM),
|
| + },
|
| + {
|
| NULL,
|
| NULL,
|
| },
|
|
|