diff options
Diffstat (limited to 'ppapi/c/dev/ppb_opengles2ext_dev.h')
-rw-r--r-- | ppapi/c/dev/ppb_opengles2ext_dev.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ppapi/c/dev/ppb_opengles2ext_dev.h b/ppapi/c/dev/ppb_opengles2ext_dev.h index 56f4101..11ef1b6 100644 --- a/ppapi/c/dev/ppb_opengles2ext_dev.h +++ b/ppapi/c/dev/ppb_opengles2ext_dev.h @@ -15,4 +15,15 @@ #include "ppapi/c/pp_resource.h" #include "ppapi/c/ppb_opengles2.h" +#define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 \ + "PPB_OpenGLES2DrawBuffers(Dev);1.0" +#define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE \ + PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 // NOLINT + +struct PPB_OpenGLES2DrawBuffers_Dev { + void (*DrawBuffersEXT)(PP_Resource context, + GLsizei count, + const GLenum* bufs); +}; + #endif // PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ |