diff options
Diffstat (limited to 'gpu/command_buffer/client/gles2_c_lib_autogen.h')
-rw-r--r-- | gpu/command_buffer/client/gles2_c_lib_autogen.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h index 1aa3cbd..67f1e05 100644 --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h @@ -1523,6 +1523,9 @@ void GL_APIENTRY GLES2SwapInterval(GLint interval) { void GL_APIENTRY GLES2FlushDriverCachesCHROMIUM() { gles2::GetGLContext()->FlushDriverCachesCHROMIUM(); } +GLuint GL_APIENTRY GLES2GetLastFlushIdCHROMIUM() { + return gles2::GetGLContext()->GetLastFlushIdCHROMIUM(); +} void GL_APIENTRY GLES2MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) { gles2::GetGLContext()->MatrixLoadfCHROMIUM(matrixMode, m); } @@ -2888,6 +2891,10 @@ extern const NameToFunc g_gles2_function_table[] = { reinterpret_cast<GLES2FunctionPointer>(glFlushDriverCachesCHROMIUM), }, { + "glGetLastFlushIdCHROMIUM", + reinterpret_cast<GLES2FunctionPointer>(glGetLastFlushIdCHROMIUM), + }, + { "glMatrixLoadfCHROMIUM", reinterpret_cast<GLES2FunctionPointer>(glMatrixLoadfCHROMIUM), }, |