diff options
author | jbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 20:09:57 +0000 |
---|---|---|
committer | jbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 20:09:57 +0000 |
commit | ce9eea60c922efff7c680a7a127480a799e06e94 (patch) | |
tree | 6e34093d78d48fe4d1132c4d8eef2817d32e2203 /gpu/GLES2 | |
parent | 8c3bd1d8c71d8432beb624ce1434ca962665de90 (diff) | |
download | chromium_src-ce9eea60c922efff7c680a7a127480a799e06e94.zip chromium_src-ce9eea60c922efff7c680a7a127480a799e06e94.tar.gz chromium_src-ce9eea60c922efff7c680a7a127480a799e06e94.tar.bz2 |
implemented latch support in renderer process. this corresponds with a webkit patch.
https://bugs.webkit.org/show_bug.cgi?id=58003
BUG=72671
TEST=see attachment in bug for test. only green should be seen.
Review URL: http://codereview.chromium.org/6810009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81295 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/GLES2')
-rw-r--r-- | gpu/GLES2/gl2ext.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gpu/GLES2/gl2ext.h b/gpu/GLES2/gl2ext.h index 02da1ea..d9d64e0 100644 --- a/gpu/GLES2/gl2ext.h +++ b/gpu/GLES2/gl2ext.h @@ -962,12 +962,12 @@ typedef void (GL_APIENTRYP PFNGLREQUESTEXTENSIONCHROMIUM) (const GLchar *extensi #define glSetLatchCHROMIUM GLES2_GET_FUN(SetLatchCHROMIUM) #define glWaitLatchCHROMIUM GLES2_GET_FUN(WaitLatchCHROMIUM) #if !defined(GLES2_USE_CPP_BINDINGS) -GL_APICALL void GL_APIENTRY glSetLatchCHROMIUM (GLint shm_id, GLuint latch_id); -GL_APICALL void GL_APIENTRY glWaitLatchCHROMIUM (GLint shm_id, GLuint latch_id); +GL_APICALL void GL_APIENTRY glSetLatchCHROMIUM (GLuint latch_id); +GL_APICALL void GL_APIENTRY glWaitLatchCHROMIUM (GLuint latch_id); #endif #else -typedef void (GL_APIENTRYP PFNGLSETLATCHCHROMIUM) (GLint shm_id, GLuint latch_id); -typedef void (GL_APIENTRYP PFNGLWaitLATCHCHROMIUM) (GLint shm_id, GLuint latch_id); +typedef void (GL_APIENTRYP PFNGLSETLATCHCHROMIUM) (GLuint latch_id); +typedef void (GL_APIENTRYP PFNGLWaitLATCHCHROMIUM) (GLuint latch_id); #endif #endif |