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

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

Issue 621673002: command_buffer: Remove unused shared id code (GenSharedIdsCHROMIUM, ...) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 fac68f7ba4eb6f7f1e89b51d3595a21772d1b796..f852f0a26acf5c52d5fc13c454a908de4b636e9e 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -712,22 +712,6 @@ GLuint GLES2GetMaxValueInBufferCHROMIUM(GLuint buffer_id,
return gles2::GetGLContext()->GetMaxValueInBufferCHROMIUM(
buffer_id, count, type, offset);
}
-void GLES2GenSharedIdsCHROMIUM(GLuint namespace_id,
- GLuint id_offset,
- GLsizei n,
- GLuint* ids) {
- gles2::GetGLContext()->GenSharedIdsCHROMIUM(namespace_id, id_offset, n, ids);
-}
-void GLES2DeleteSharedIdsCHROMIUM(GLuint namespace_id,
- GLsizei n,
- const GLuint* ids) {
- gles2::GetGLContext()->DeleteSharedIdsCHROMIUM(namespace_id, n, ids);
-}
-void GLES2RegisterSharedIdsCHROMIUM(GLuint namespace_id,
- GLsizei n,
- const GLuint* ids) {
- gles2::GetGLContext()->RegisterSharedIdsCHROMIUM(namespace_id, n, ids);
-}
GLboolean GLES2EnableFeatureCHROMIUM(const char* feature) {
return gles2::GetGLContext()->EnableFeatureCHROMIUM(feature);
}
@@ -1647,18 +1631,6 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glGetMaxValueInBufferCHROMIUM),
},
{
- "glGenSharedIdsCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glGenSharedIdsCHROMIUM),
- },
- {
- "glDeleteSharedIdsCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glDeleteSharedIdsCHROMIUM),
- },
- {
- "glRegisterSharedIdsCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glRegisterSharedIdsCHROMIUM),
- },
- {
"glEnableFeatureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glEnableFeatureCHROMIUM),
},
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698