| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 GLint sorting_context_id, | 775 GLint sorting_context_id, |
| 776 const GLfloat* transform); | 776 const GLfloat* transform); |
| 777 GL_APICALL void GL_APIENTRY | 777 GL_APICALL void GL_APIENTRY |
| 778 glScheduleCALayerCHROMIUM(GLuint contents_texture_id, | 778 glScheduleCALayerCHROMIUM(GLuint contents_texture_id, |
| 779 const GLfloat* contents_rect, | 779 const GLfloat* contents_rect, |
| 780 GLuint background_color, | 780 GLuint background_color, |
| 781 GLuint edge_aa_mask, | 781 GLuint edge_aa_mask, |
| 782 const GLfloat* bounds_rect, | 782 const GLfloat* bounds_rect, |
| 783 GLuint filter); | 783 GLuint filter); |
| 784 GL_APICALL void GL_APIENTRY | 784 GL_APICALL void GL_APIENTRY |
| 785 glScheduleCALayerInUseQueryCHROMIUM(GLsizei count, const GLuint* textures); | 785 glScheduleCALayerInUseQueryCHROMIUM(GLsizei count, |
| 786 const GLuint* textures_and_handle_requests); |
| 786 #endif | 787 #endif |
| 787 typedef void(GL_APIENTRYP PFNGLSCHEDULECALAYERSHAREDSTATECHROMIUMPROC)( | 788 typedef void(GL_APIENTRYP PFNGLSCHEDULECALAYERSHAREDSTATECHROMIUMPROC)( |
| 788 GLfloat opacity, | 789 GLfloat opacity, |
| 789 GLboolean is_clipped, | 790 GLboolean is_clipped, |
| 790 const GLfloat* clip_rect, | 791 const GLfloat* clip_rect, |
| 791 GLint sorting_context_id, | 792 GLint sorting_context_id, |
| 792 const GLfloat* transform); | 793 const GLfloat* transform); |
| 793 typedef void(GL_APIENTRYP PFNGLSCHEDULECALAYERCHROMIUMPROC)( | 794 typedef void(GL_APIENTRYP PFNGLSCHEDULECALAYERCHROMIUMPROC)( |
| 794 GLuint contents_texture_id, | 795 GLuint contents_texture_id, |
| 795 const GLfloat* contents_rect, | 796 const GLfloat* contents_rect, |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1201 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components); | 1202 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components); |
| 1202 #endif | 1203 #endif |
| 1203 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332 | 1204 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332 |
| 1204 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */ | 1205 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */ |
| 1205 | 1206 |
| 1206 #ifdef __cplusplus | 1207 #ifdef __cplusplus |
| 1207 } | 1208 } |
| 1208 #endif | 1209 #endif |
| 1209 | 1210 |
| 1210 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ | 1211 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ |
| OLD | NEW |