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

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

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 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>
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 #endif 689 #endif
690 #endif /* GL_CHROMIUM_color_buffer_float_rgba */ 690 #endif /* GL_CHROMIUM_color_buffer_float_rgba */
691 691
692 #ifndef GL_CHROMIUM_color_buffer_float_rgb 692 #ifndef GL_CHROMIUM_color_buffer_float_rgb
693 #define GL_CHROMIUM_color_buffer_float_rgb 1 693 #define GL_CHROMIUM_color_buffer_float_rgb 1
694 #ifndef GL_RGB32F 694 #ifndef GL_RGB32F
695 #define GL_RGB32F 0x8815 695 #define GL_RGB32F 0x8815
696 #endif 696 #endif
697 #endif /* GL_CHROMIUM_color_buffer_float_rgb */ 697 #endif /* GL_CHROMIUM_color_buffer_float_rgb */
698 698
699 /* GL_CHROMIUM_subscribe_uniform */
700 #ifndef GL_CHROMIUM_subscribe_uniform
701 #define GL_CHROMIUM_subscribe_uniform 1
702
703 #ifndef GL_SUBSCRIBED_VALUES_BUFFER_CHROMIUM
704 #define GL_SUBSCRIBED_VALUES_BUFFER_CHROMIUM 0x924B
705 #endif
706
707 #ifndef GL_MOUSE_POSITION_CHROMIUM
708 #define GL_MOUSE_POSITION_CHROMIUM 0x924C
709 #endif
710
711 #ifdef GL_GLEXT_PROTOTYPES
712 GL_APICALL void GL_APIENTRY
713 glGenValuebuffersCHROMIUM(GLsizei n, GLuint* buffers);
714 GL_APICALL void GL_APIENTRY
715 glDeleteValuebuffersCHROMIUM(GLsizei n, const GLuint* valuebuffers);
716 GL_APICALL GLboolean GL_APIENTRY glIsValuebufferCHROMIUM(GLuint valuebuffer);
717 GL_APICALL void GL_APIENTRY
718 glBindValuebufferCHROMIUM(GLenum target, GLuint valuebuffer);
719 GL_APICALL void GL_APIENTRY
720 glSubscribeValueCHROMIUM(GLenum target, GLenum subscription);
721 GL_APICALL void GL_APIENTRY glPopulateSubscribedValuesCHROMIUM(GLenum target);
722 GL_APICALL void GL_APIENTRY glUniformValuebufferCHROMIUM(GLint location,
723 GLenum target,
724 GLenum subscription);
725 #endif
726 #endif /* GL_CHROMIUM_subscribe_uniform */
727
728 /* GL_CHROMIUM_schedule_overlay_plane */ 699 /* GL_CHROMIUM_schedule_overlay_plane */
729 #ifndef GL_CHROMIUM_schedule_overlay_plane 700 #ifndef GL_CHROMIUM_schedule_overlay_plane
730 #define GL_CHROMIUM_schedule_overlay_plane 1 701 #define GL_CHROMIUM_schedule_overlay_plane 1
731 702
732 #ifndef GL_OVERLAY_TRANSFORM_NONE_CHROMIUM 703 #ifndef GL_OVERLAY_TRANSFORM_NONE_CHROMIUM
733 #define GL_OVERLAY_TRANSFORM_NONE_CHROMIUM 0x9245 704 #define GL_OVERLAY_TRANSFORM_NONE_CHROMIUM 0x9245
734 #endif 705 #endif
735 706
736 #ifndef GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM 707 #ifndef GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM
737 #define GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM 0x9246 708 #define GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM 0x9246
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
1225 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components); 1196 GL_APICALL void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components);
1226 #endif 1197 #endif
1227 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332 1198 #define GL_COVERAGE_MODULATION_CHROMIUM 0x9332
1228 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */ 1199 #endif /* GL_CHROMIUM_framebuffer_mixed_samples */
1229 1200
1230 #ifdef __cplusplus 1201 #ifdef __cplusplus
1231 } 1202 }
1232 #endif 1203 #endif
1233 1204
1234 #endif // GPU_GLES2_GL2EXTCHROMIUM_H_ 1205 #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