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

Unified Diff: ppapi/lib/gl/gles2/gl2ext_ppapi.h

Issue 12217119: Hush compiler warnings when compiling c code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « no previous file | ppapi/lib/gl/gles2/gl2ext_ppapi.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/lib/gl/gles2/gl2ext_ppapi.h
===================================================================
--- ppapi/lib/gl/gles2/gl2ext_ppapi.h (revision 181383)
+++ ppapi/lib/gl/gles2/gl2ext_ppapi.h (working copy)
@@ -26,29 +26,29 @@
// Terminates OpenGL ES 2.0 library.
// GL_FALSE is returned on failure, GL_TRUE otherwise.
-GL_APICALL GLboolean GL_APIENTRY glTerminatePPAPI();
+GL_APICALL GLboolean GL_APIENTRY glTerminatePPAPI(void);
// Sets context to be used for rendering in the current thread.
GL_APICALL void GL_APIENTRY glSetCurrentContextPPAPI(PP_Resource context);
// Gets context being used for rendering in the current thread.
// Returns NULL if a context has not been set yet.
-GL_APICALL PP_Resource GL_APIENTRY glGetCurrentContextPPAPI();
+GL_APICALL PP_Resource GL_APIENTRY glGetCurrentContextPPAPI(void);
// Returns OpenGL ES 2.0 interface.
-GL_APICALL const struct PPB_OpenGLES2* GL_APIENTRY glGetInterfacePPAPI();
+GL_APICALL const struct PPB_OpenGLES2* GL_APIENTRY glGetInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2InstancedArrays* GL_APIENTRY
- glGetInstancedArraysInterfacePPAPI();
+ glGetInstancedArraysInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2FramebufferBlit* GL_APIENTRY
- glGetFramebufferBlitInterfacePPAPI();
+ glGetFramebufferBlitInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2FramebufferMultisample* GL_APIENTRY
- glGetFramebufferMultisampleInterfacePPAPI();
+ glGetFramebufferMultisampleInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2ChromiumEnableFeature* GL_APIENTRY
- glGetChromiumEnableFeatureInterfacePPAPI();
+ glGetChromiumEnableFeatureInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2ChromiumMapSub* GL_APIENTRY
- glGetChromiumMapSubInterfacePPAPI();
+ glGetChromiumMapSubInterfacePPAPI(void);
GL_APICALL const struct PPB_OpenGLES2Query* GL_APIENTRY
- glGetQueryInterfacePPAPI();
+ glGetQueryInterfacePPAPI(void);
#ifdef __cplusplus
}
« no previous file with comments | « no previous file | ppapi/lib/gl/gles2/gl2ext_ppapi.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698