diff options
author | junov <junov@chromium.org> | 2015-09-22 09:46:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-22 16:47:51 +0000 |
commit | e4787c4cc75862dbe9eaf4610284544828c33745 (patch) | |
tree | 74cc6872a4dcc884cde0735d4faa78db08bd1a9e /ppapi/lib | |
parent | ca31353e8f739f9759ff6f1fccc3e60d7cb65371 (diff) | |
download | chromium_src-e4787c4cc75862dbe9eaf4610284544828c33745.zip chromium_src-e4787c4cc75862dbe9eaf4610284544828c33745.tar.gz chromium_src-e4787c4cc75862dbe9eaf4610284544828c33745.tar.bz2 |
Removing GL context rate limiting feature and related wrappers
Dead code removal.
BUG=531659
TBR=jamesr@chromium.org, vmiura@chromium.org
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1341423006
Cr-Commit-Position: refs/heads/master@{#350172}
Diffstat (limited to 'ppapi/lib')
-rw-r--r-- | ppapi/lib/gl/include/GLES2/gl2ext.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ppapi/lib/gl/include/GLES2/gl2ext.h b/ppapi/lib/gl/include/GLES2/gl2ext.h index d690a9d..0ef4123 100644 --- a/ppapi/lib/gl/include/GLES2/gl2ext.h +++ b/ppapi/lib/gl/include/GLES2/gl2ext.h @@ -1784,25 +1784,6 @@ typedef void (GL_APIENTRYP PFNGLREQUESTEXTENSIONCHROMIUM) (const GLchar *extensi #endif #endif -/* GL_CHROMIUM_rate_limit_offscreen_context */ -/* - * This extension will block if the calling context has gotten more than two - * glRateLimit calls ahead of the GPU process. This keeps the client in sync - * with the GPU without having to call swapbuffers, which has potentially - * undesirable side effects. - */ -#ifndef GL_CHROMIUM_rate_limit_offscreen_context -#define GL_CHROMIUM_rate_limit_offscreen_context 1 -#ifdef GL_GLEXT_PROTOTYPES -#define glRateLimitOffscreenContextCHROMIUM GLES2_GET_FUN(RateLimitOffscreenContextCHROMIUM) -#if !defined(GLES2_USE_CPP_BINDINGS) -GL_APICALL void GL_APIENTRY glRateLimitOffscreenContextCHROMIUM (void); -#endif -#else -typedef void (GL_APIENTRYP PFNGLRATELIMITOFFSCREENCONTEXTCHROMIUM) (); -#endif -#endif - /* GL_CHROMIUM_get_multiple */ /* * This extension provides functions for quering multiple GL state with a single |