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

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

Issue 1218223005: command_buffer: Implement CHROMIUM_framebuffer_mixed_samples extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase, add bogus spec text Created 5 years 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
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>
(...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698