| OLD | NEW |
| 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 // This file contains Chromium-specific GLES2 extensions declarations. | 5 // This file contains Chromium-specific GLES2 extensions declarations. |
| 6 | 6 |
| 7 #ifndef GPU_GLES2_GL2EXTCHROMIUM_H_ | 7 #ifndef GPU_GLES2_GL2EXTCHROMIUM_H_ |
| 8 #define GPU_GLES2_GL2EXTCHROMIUM_H_ | 8 #define GPU_GLES2_GL2EXTCHROMIUM_H_ |
| 9 | 9 |
| 10 #include <GLES2/gl2.h> | 10 #include <GLES2/gl2.h> |
| (...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1203 const GLchar* name); | 1203 const GLchar* name); |
| 1204 | 1204 |
| 1205 #define GL_SRC_ALPHA_SATURATE_EXT 0x0308 | 1205 #define GL_SRC_ALPHA_SATURATE_EXT 0x0308 |
| 1206 #define GL_SRC1_ALPHA_EXT 0x8589 // OpenGL 1.5 token value | 1206 #define GL_SRC1_ALPHA_EXT 0x8589 // OpenGL 1.5 token value |
| 1207 #define GL_SRC1_COLOR_EXT 0x88F9 | 1207 #define GL_SRC1_COLOR_EXT 0x88F9 |
| 1208 #define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA | 1208 #define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA |
| 1209 #define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB | 1209 #define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB |
| 1210 #define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC | 1210 #define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC |
| 1211 #endif /* GL_EXT_blend_func_extended */ | 1211 #endif /* GL_EXT_blend_func_extended */ |
| 1212 | 1212 |
| 1213 #ifndef GL_CHROMIUM_framebuffer_mixed_samples |
| 1214 #define GL_CHROMIUM_framebuffer_mixed_samples 1 |
| 1215 typedef void(GL_APIENTRYP PFNGLCOVERAGEMODULATIONCHROMIUMPROC)( |
| 1216 GLenum components); |
| 1217 #ifdef GL_GLEXT_PROTOTYPES |
| 1218 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components); |
| 1219 #endif |
| 1220 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332 |
| 1221 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */ |
| 1222 |
| 1213 #ifdef __cplusplus | 1223 #ifdef __cplusplus |
| 1214 } | 1224 } |
| 1215 #endif | 1225 #endif |
| 1216 | 1226 |
| 1217 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ | 1227 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ |
| OLD | NEW |