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

Side by Side Diff: gpu/GLES2/gl2extchromium.h

Issue 2021413003: Remove GL_CHROMIUM_iosurface extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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
« no previous file with comments | « gpu/GLES2/gl2chromium_autogen.h ('k') | gpu/command_buffer/build_gles2_cmd_buffer.py » ('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 // 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>
11 #include <GLES2/gl2ext.h> 11 #include <GLES2/gl2ext.h>
12 12
13 #ifdef __cplusplus 13 #ifdef __cplusplus
14 extern "C" { 14 extern "C" {
15 #endif 15 #endif
16 16
17 /* GL_CHROMIUM_iosurface */
18 #ifndef GL_CHROMIUM_iosurface
19 #define GL_CHROMIUM_iosurface 1
20 #ifdef GL_GLEXT_PROTOTYPES
21 GL_APICALL void GL_APIENTRY glTexImageIOSurface2DCHROMIUM(
22 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId,
23 GLuint plane);
24 #endif
25 typedef void (GL_APIENTRYP PFNGLTEXIMAGEIOSURFACE2DCHROMIUMPROC) (
26 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId,
27 GLuint plane);
28 #endif /* GL_CHROMIUM_iosurface */
29
30 /* GL_CHROMIUM_texture_mailbox */ 17 /* GL_CHROMIUM_texture_mailbox */
31 #ifndef GL_CHROMIUM_texture_mailbox 18 #ifndef GL_CHROMIUM_texture_mailbox
32 #define GL_CHROMIUM_texture_mailbox 1 19 #define GL_CHROMIUM_texture_mailbox 1
33 20
34 #ifndef GL_MAILBOX_SIZE_CHROMIUM 21 #ifndef GL_MAILBOX_SIZE_CHROMIUM
35 #define GL_MAILBOX_SIZE_CHROMIUM 64 22 #define GL_MAILBOX_SIZE_CHROMIUM 64
36 #endif 23 #endif
37 #ifdef GL_GLEXT_PROTOTYPES 24 #ifdef GL_GLEXT_PROTOTYPES
38 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM(GLbyte* mailbox); 25 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM(GLbyte* mailbox);
39 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM( 26 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM(
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components); 1206 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components);
1220 #endif 1207 #endif
1221 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332 1208 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332
1222 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */ 1209 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */
1223 1210
1224 #ifdef __cplusplus 1211 #ifdef __cplusplus
1225 } 1212 }
1226 #endif 1213 #endif
1227 1214
1228 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ 1215 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_
OLDNEW
« no previous file with comments | « gpu/GLES2/gl2chromium_autogen.h ('k') | gpu/command_buffer/build_gles2_cmd_buffer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698