blob: 1c3c24782b51d4a1250569a735142f789b185bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_VERSION_H
#define CR_VERSION_H
#define SHCROGL_SSM_VERSION_BEFORE_CTXUSAGE_BITS 28
/* version which might have context usage bits saved */
#define SHCROGL_SSM_VERSION_WITH_SAVED_CTXUSAGE_BITS SHCROGL_SSM_VERSION_BEFORE_CTXUSAGE_BITS
#define SHCROGL_SSM_VERSION_BEFORE_FRONT_DRAW_TRACKING 29
/* version that might have corrupted state data */
#define SHCROGL_SSM_VERSION_WITH_CORUPTED_STATE 30
/* version with invalid glGetError state */
#define SHCROGL_SSM_VERSION_WITH_INVALID_ERROR_STATE 30
/* VBox 4.2.12 had a bug that incorrectly CRMuralInfo data
* in a different format without changing the state version,
* i.e. 30 version can have both "correct" and "incorrect" CRMuralInfo data */
#define SHCROGL_SSM_VERSION_WITH_BUGGY_MURAL_INFO 30
/* the saved state has incorrect front and back buffer image data */
#define SHCROGL_SSM_VERSION_WITH_BUGGY_FB_IMAGE_DATA 31
#define SHCROGL_SSM_VERSION_WITH_STATE_BITS 33
#define SHCROGL_SSM_VERSION_WITH_WINDOW_CTX_USAGE 33
#define SHCROGL_SSM_VERSION_WITH_FIXED_STENCIL 34
#define SHCROGL_SSM_VERSION_WITH_SAVED_DEPTH_STENCIL_BUFFER 35
/* some ogl drivers fail to Read/DrawPixels for DEPTH and STENCIL separately
* from DEPTH_STENCIL renderbuffer we used for offscreen rendering
* this is why we switched to glReadDrawPixels(GL_DEPTH_STENCIL) in one run */
#define SHCROGL_SSM_VERSION_WITH_SINGLE_DEPTH_STENCIL 36
#define SHCROGL_SSM_VERSION_WITH_PRESENT_STATE 37
/* older state did not have glPointParameter ( GL_POINT_SPRITE_COORD_ORIGIN ) implementation */
#define SHCROGL_SSM_VERSION_WITH_SPRITE_COORD_ORIGIN 38
/* dirty bits are not needed for now, remove */
#define SHCROGL_SSM_VERSION_WITHOUT_DIRTY_BITS 38
/* dummy windows and contexts have 0 external IDs, so never get stored to the state */
#define SHCROGL_SSM_VERSION_WITH_FIXED_DUMMYIDS 39
#define SHCROGL_SSM_VERSION_WITH_SCREEN_INFO 40
#define SHCROGL_SSM_VERSION_WITH_ALLOCATED_KEYS 41
#define SHCROGL_SSM_VERSION_WITH_FB_INFO 42
#define SHCROGL_SSM_VERSION_WITH_BUGGY_KEYS 42
#define SHCROGL_SSM_VERSION_CRCMD 44
#define SHCROGL_SSM_VERSION_WITH_SCREEN_MAP 45
#define SHCROGL_SSM_VERSION_WITH_SCREEN_MAP_REORDERED 46
#define SHCROGL_SSM_VERSION_WITH_PEND_CMD_INFO 47
#define SHCROGL_SSM_VERSION_WITH_SEPARATE_DEPTH_STENCIL_BUFFERS 48
#define SHCROGL_SSM_VERSION_WITH_DISPLAY_LISTS 49
#define SHCROGL_SSM_VERSION 49
/* These define the Chromium release number.
* Alpha Release = 0.1.0, Beta Release = 0.2.0
*/
#define CR_MAJOR_VERSION 1
#define CR_MINOR_VERSION 9
#define CR_PATCH_VERSION 0
#define CR_VERSION_STRING "1.9" /* Chromium version, not OpenGL version */
/* These define the OpenGL version that Chromium supports.
* This lets users easily recompile Chromium with/without OpenGL 1.x support.
* We use OpenGL's GL_VERSION_1_x convention.
*/
#define CR_OPENGL_VERSION_1_0 1
#define CR_OPENGL_VERSION_1_1 1
#define CR_OPENGL_VERSION_1_2 1
#define CR_OPENGL_VERSION_1_2_1 1
#define CR_OPENGL_VERSION_1_3 1
#define CR_OPENGL_VERSION_1_4 1
#define CR_OPENGL_VERSION_1_5 1
#define CR_OPENGL_VERSION_2_0 1
#define CR_OPENGL_VERSION_2_1 1
/* Version (string) of OpenGL functionality supported by Chromium */
#ifdef CR_OPENGL_VERSION_2_1
# define CR_OPENGL_VERSION_STRING "2.1"
#elif defined(CR_OPENGL_VERSION_2_0)
# define CR_OPENGL_VERSION_STRING "2.0"
#else
# define CR_OPENGL_VERSION_STRING "1.5"
#endif
/* These define the OpenGL extensions that Chromium supports.
* Users can enable/disable support for particular OpenGL extensions here.
* Again, use OpenGL's convention.
* WARNING: if you add new extensions here, also update this file:
* state_tracker/state_limits.c
*/
/*#define CR_ARB_imaging 1 not yet */
#define CR_ARB_depth_texture 1
#define CR_ARB_fragment_program 1
#define CR_ARB_multitexture 1
#define CR_ARB_multisample 1
#define CR_ARB_occlusion_query 1
#define CR_ARB_point_parameters 1
#define CR_ARB_point_sprite 1
#define CR_ARB_shadow 1
#define CR_ARB_shadow_ambient 1
#define CR_ARB_texture_border_clamp 1
#define CR_ARB_texture_compression 1
#define CR_ARB_texture_cube_map 1
#define CR_ARB_texture_env_add 1
#define CR_ARB_texture_env_combine 1
#define CR_ARB_texture_env_crossbar 1
#define CR_ARB_texture_env_dot3 1
#define CR_ARB_texture_mirrored_repeat 1
#define CR_ATI_texture_mirror_once 1
#define CR_ARB_texture_non_power_of_two 1
#define CR_ARB_transpose_matrix 1
#define CR_ARB_vertex_buffer_object 1
#define CR_ARB_vertex_program 1
#define CR_ARB_window_pos 1
#define CR_EXT_blend_color 1
#define CR_EXT_blend_equation 1
#define CR_EXT_blend_minmax 1
#define CR_EXT_blend_logic_op 1
#define CR_EXT_blend_subtract 1
#define CR_EXT_blend_func_separate 1
#define CR_EXT_clip_volume_hint 1
#define CR_EXT_fog_coord 1
#define CR_EXT_multi_draw_arrays 1
#define CR_EXT_shadow_funcs 1
#define CR_EXT_secondary_color 1
#ifndef CR_OPENGL_VERSION_1_2
#define CR_EXT_separate_specular_color 1
#endif
#define CR_EXT_stencil_wrap 1
#define CR_EXT_texture_cube_map 1
#define CR_EXT_texture_edge_clamp 1
#define CR_EXT_texture_env_add 1
#define CR_EXT_texture_filter_anisotropic 1
#define CR_EXT_texture_lod_bias 1
#define CR_EXT_texture_object 1
#define CR_EXT_texture3D 1
#define CR_IBM_rasterpos_clip 1
#define CR_NV_fog_distance 1
#define CR_NV_register_combiners 1
#define CR_NV_register_combiners2 1
#define CR_NV_texgen_reflection 1
#define CR_NV_texture_rectangle 1
#define CR_NV_vertex_program 1
#define CR_NV_vertex_program1_1 1
#define CR_NV_vertex_program2 1
#define CR_NV_vertex_program2_option 1
#define CR_NV_vertex_program3 1
#define CR_NV_fragment_program 1
#define CR_NV_fragment_program_option 1
#define CR_NV_fragment_program2 1
#define CR_SGIS_texture_border_clamp 1
#define CR_SGIS_texture_edge_clamp 1
#define CR_SGIS_generate_mipmap 1
#define CR_EXT_texture_from_pixmap 1
#define CR_EXT_draw_range_elements 1
#define CR_EXT_texture_compression_s3tc 1
#define CR_ARB_shader_objects 1
#define CR_ARB_vertex_shader 1
#define CR_ARB_fragment_shader 1
#define CR_ARB_shading_language_100 1
#define CR_EXT_framebuffer_object 1
#define CR_EXT_compiled_vertex_array 1
#define CR_ARB_pixel_buffer_object 1
#define CR_EXT_texture_sRGB 1
#define CR_EXT_framebuffer_blit 1
#define CR_EXT_blend_equation_separate 1
#define CR_EXT_stencil_two_side 1
#define CR_GREMEDY_string_marker 1
#define CR_ARB_texture_float 1
#define CR_ARB_draw_buffers 1
#define CR_ARB_shader_texture_lod 1
#endif /* CR_VERSION_H */
|