Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 /* From dev/ppb_opengles2ext_dev.idl modified Fri Sep 5 14:52:51 2014. */ | 5 /* From dev/ppb_opengles2ext_dev.idl modified Fri Sep 5 14:52:51 2014. */ |
| 6 | 6 |
| 7 #ifndef PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ | 7 #ifndef PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ |
| 8 #define PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ | 8 #define PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ |
| 9 | 9 |
| 10 #include "ppapi/c/pp_macros.h" | 10 #include "ppapi/c/pp_macros.h" |
| 11 #include "ppapi/c/pp_resource.h" | 11 #include "ppapi/c/pp_resource.h" |
| 12 #include "ppapi/c/pp_stdint.h" | 12 #include "ppapi/c/pp_stdint.h" |
| 13 #include "ppapi/c/ppb_opengles2.h" | 13 #include "ppapi/c/ppb_opengles2.h" |
| 14 | 14 |
| 15 #define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 \ | 15 #define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 \ |
| 16 "PPB_OpenGLES2DrawBuffers(Dev);1.0" | 16 "PPB_OpenGLES2DrawBuffers(Dev);1.0" |
|
vmiura
2015/06/19 21:55:22
Remove changes in this file?
Kimmo Kinnunen
2015/06/23 12:03:11
Done.
| |
| 17 #define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE \ | 17 #define PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE \ |
| 18 PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 | 18 PPB_OPENGLES2_DRAWBUFFERS_DEV_INTERFACE_1_0 |
| 19 | 19 |
| 20 /** | 20 /** |
| 21 * @file | 21 * @file |
| 22 * This file is auto-generated from | 22 * This file is auto-generated from |
| 23 * gpu/command_buffer/build_gles2_cmd_buffer.py | 23 * gpu/command_buffer/build_gles2_cmd_buffer.py |
| 24 * It's formatted by clang-format using chromium coding style: | 24 * It's formatted by clang-format using chromium coding style: |
| 25 * clang-format -i -style=chromium filename | 25 * clang-format -i -style=chromium filename |
| 26 * DO NOT EDIT! */ | 26 * DO NOT EDIT! */ |
| 27 | 27 |
| 28 | |
| 29 #include "ppapi/c/pp_resource.h" | 28 #include "ppapi/c/pp_resource.h" |
| 30 #include "ppapi/c/ppb_opengles2.h" | 29 #include "ppapi/c/ppb_opengles2.h" |
| 31 | 30 |
| 32 | |
| 33 /** | 31 /** |
| 34 * @addtogroup Interfaces | 32 * @addtogroup Interfaces |
| 35 * @{ | 33 * @{ |
| 36 */ | 34 */ |
| 37 struct PPB_OpenGLES2DrawBuffers_Dev_1_0 { | 35 struct PPB_OpenGLES2DrawBuffers_Dev_1_0 { |
| 38 void (*DrawBuffersEXT)(PP_Resource context, | 36 void (*DrawBuffersEXT)(PP_Resource context, |
| 39 GLsizei count, | 37 GLsizei count, |
| 40 const GLenum* bufs); | 38 const GLenum* bufs); |
| 41 }; | 39 }; |
| 42 | 40 |
| 43 struct PPB_OpenGLES2DrawBuffers_Dev { | 41 struct PPB_OpenGLES2DrawBuffers_Dev { |
| 44 void (*DrawBuffersEXT)(PP_Resource context, | 42 void (*DrawBuffersEXT)(PP_Resource context, |
| 45 GLsizei count, | 43 GLsizei count, |
| 46 const GLenum* bufs); | 44 const GLenum* bufs); |
| 47 }; | 45 }; |
| 48 /** | 46 /** |
| 49 * @} | 47 * @} |
| 50 */ | 48 */ |
| 51 | 49 |
| 52 #endif /* PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ */ | 50 #endif /* PPAPI_C_DEV_PPB_OPENGLES2EXT_DEV_H_ */ |
| 53 | |
| OLD | NEW |