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

Unified Diff: ppapi/lib/gl/include/GLES2/gl2ext.h

Issue 659903002: Add subscribeUniform extension pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: ppapi/lib/gl/include/GLES2/gl2ext.h
diff --git a/ppapi/lib/gl/include/GLES2/gl2ext.h b/ppapi/lib/gl/include/GLES2/gl2ext.h
index d82e8385e28ebd39d9d9187623aad3f348c09f61..bff9b115ddd9cdbd331e25b2d6b2b480b5f10f2f 100644
--- a/ppapi/lib/gl/include/GLES2/gl2ext.h
+++ b/ppapi/lib/gl/include/GLES2/gl2ext.h
@@ -1973,6 +1973,24 @@ typedef void (GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUM) (GLenum target, GLenum sour
#define GL_COMMANDS_ISSUED_CHROMIUM 0x84F2
#endif
+/* GL_CHROMIUM_subscribe_uniform */
+#ifndef GL_CHROMIUM_subscribe_uniform
+#define GL_CHROMIUM_subscribe_uniform 1
+#ifndef GL_MOUSE_POSITION
+#define GL_MOUSE_POSITION 0x924B
+#endif
+#ifndef GL_MOUSE_DELTA
+#define GL_MOUSE_DELTA 0x924C
+#endif
+#ifdef GL_GLEXT_PROTOTYPES
+#define glSubscribeUniformCHROMIUM GLES2_GET_FUN(SubscribeUniformCHROMIUM)
+#if !defined(GLES2_USE_CPP_BINDINGS)
+GL_APICALL void GL_APIENTRY
+ glSubscribeUniformCHROMIUM(GLenum target, const GLchar* name);
+#endif
+#endif
+#endif /* GL_CHROMIUM_subscribe_uniform */
+
#ifdef __cplusplus
}
#endif

Powered by Google App Engine
This is Rietveld 408576698