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

Side by Side Diff: ppapi/lib/gl/gles2/gl2ext_ppapi.h

Issue 397183002: Add PPAPI interface for OpenGL ES 2.0 Vertex Array Objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/c/ppb_opengles2.h ('k') | ppapi/lib/gl/gles2/gl2ext_ppapi.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // OpenGL ES 2.0 extensions for PPAPI. 5 // OpenGL ES 2.0 extensions for PPAPI.
6 6
7 #ifndef PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_ 7 #ifndef PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_
8 #define PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_ 8 #define PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_
9 9
10 #include <GLES2/gl2platform.h> 10 #include <GLES2/gl2platform.h>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 GL_APICALL const struct PPB_OpenGLES2FramebufferBlit* GL_APIENTRY 42 GL_APICALL const struct PPB_OpenGLES2FramebufferBlit* GL_APIENTRY
43 glGetFramebufferBlitInterfacePPAPI(void); 43 glGetFramebufferBlitInterfacePPAPI(void);
44 GL_APICALL const struct PPB_OpenGLES2FramebufferMultisample* GL_APIENTRY 44 GL_APICALL const struct PPB_OpenGLES2FramebufferMultisample* GL_APIENTRY
45 glGetFramebufferMultisampleInterfacePPAPI(void); 45 glGetFramebufferMultisampleInterfacePPAPI(void);
46 GL_APICALL const struct PPB_OpenGLES2ChromiumEnableFeature* GL_APIENTRY 46 GL_APICALL const struct PPB_OpenGLES2ChromiumEnableFeature* GL_APIENTRY
47 glGetChromiumEnableFeatureInterfacePPAPI(void); 47 glGetChromiumEnableFeatureInterfacePPAPI(void);
48 GL_APICALL const struct PPB_OpenGLES2ChromiumMapSub* GL_APIENTRY 48 GL_APICALL const struct PPB_OpenGLES2ChromiumMapSub* GL_APIENTRY
49 glGetChromiumMapSubInterfacePPAPI(void); 49 glGetChromiumMapSubInterfacePPAPI(void);
50 GL_APICALL const struct PPB_OpenGLES2Query* GL_APIENTRY 50 GL_APICALL const struct PPB_OpenGLES2Query* GL_APIENTRY
51 glGetQueryInterfacePPAPI(void); 51 glGetQueryInterfacePPAPI(void);
52 GL_APICALL const struct PPB_OpenGLES2VertexArrayObject* GL_APIENTRY
53 glGetVertexArrayObjectInterfacePPAPI(void);
52 GL_APICALL const struct PPB_OpenGLES2DrawBuffers_Dev* GL_APIENTRY 54 GL_APICALL const struct PPB_OpenGLES2DrawBuffers_Dev* GL_APIENTRY
53 glGetDrawBuffersInterfacePPAPI(void); 55 glGetDrawBuffersInterfacePPAPI(void);
54 56
55 #ifdef __cplusplus 57 #ifdef __cplusplus
56 } 58 }
57 #endif // __cplusplus 59 #endif // __cplusplus
58 60
59 #endif // PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_ 61 #endif // PPAPI_LIB_GL_GLES2_GL2EXT_PPAPI_H_
60 62
OLDNEW
« no previous file with comments | « ppapi/c/ppb_opengles2.h ('k') | ppapi/lib/gl/gles2/gl2ext_ppapi.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698