blob: c7a0d69a4f0522caaf200c150085a164ab61d092 [file] [log] [blame]
Brian Paule0b9e332010-01-05 21:23:01 -07001/*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2010 VMware, Inc. All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24
Vinson Leeab564b52011-01-06 00:45:08 -080025#include "imports.h"
Vinson Lee0117da42011-01-05 23:11:54 -080026#include "mtypes.h"
Brian Paule0b9e332010-01-05 21:23:01 -070027#include "version.h"
28
29
30
31/**
32 * Examine enabled GL extensions to determine GL version.
33 * Return major and minor version numbers.
34 */
35static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -040036compute_version(struct gl_context *ctx)
Brian Paule0b9e332010-01-05 21:23:01 -070037{
Kristian Høgsberg29107d42010-04-21 16:14:18 -040038 GLuint major, minor;
39 static const int max = 100;
40
Brian Paule0b9e332010-01-05 21:23:01 -070041 const GLboolean ver_1_3 = (ctx->Extensions.ARB_multisample &&
42 ctx->Extensions.ARB_multitexture &&
43 ctx->Extensions.ARB_texture_border_clamp &&
44 ctx->Extensions.ARB_texture_compression &&
45 ctx->Extensions.ARB_texture_cube_map &&
46 ctx->Extensions.EXT_texture_env_add &&
47 ctx->Extensions.ARB_texture_env_combine &&
48 ctx->Extensions.ARB_texture_env_dot3);
49 const GLboolean ver_1_4 = (ver_1_3 &&
50 ctx->Extensions.ARB_depth_texture &&
51 ctx->Extensions.ARB_shadow &&
52 ctx->Extensions.ARB_texture_env_crossbar &&
53 ctx->Extensions.ARB_texture_mirrored_repeat &&
54 ctx->Extensions.ARB_window_pos &&
55 ctx->Extensions.EXT_blend_color &&
56 ctx->Extensions.EXT_blend_func_separate &&
57 ctx->Extensions.EXT_blend_minmax &&
58 ctx->Extensions.EXT_blend_subtract &&
59 ctx->Extensions.EXT_fog_coord &&
60 ctx->Extensions.EXT_multi_draw_arrays &&
61 ctx->Extensions.EXT_point_parameters &&
62 ctx->Extensions.EXT_secondary_color &&
63 ctx->Extensions.EXT_stencil_wrap &&
64 ctx->Extensions.EXT_texture_lod_bias &&
65 ctx->Extensions.SGIS_generate_mipmap);
66 const GLboolean ver_1_5 = (ver_1_4 &&
67 ctx->Extensions.ARB_occlusion_query &&
68 ctx->Extensions.ARB_vertex_buffer_object &&
69 ctx->Extensions.EXT_shadow_funcs);
70 const GLboolean ver_2_0 = (ver_1_5 &&
71 ctx->Extensions.ARB_draw_buffers &&
72 ctx->Extensions.ARB_point_sprite &&
73 ctx->Extensions.ARB_shader_objects &&
74 ctx->Extensions.ARB_vertex_shader &&
75 ctx->Extensions.ARB_fragment_shader &&
76 ctx->Extensions.ARB_texture_non_power_of_two &&
77 ctx->Extensions.EXT_blend_equation_separate &&
78
79 /* Technically, 2.0 requires the functionality
80 * of the EXT version. Enable 2.0 if either
81 * extension is available, and assume that a
82 * driver that only exposes the ATI extension
83 * will fallback to software when necessary.
84 */
85 (ctx->Extensions.EXT_stencil_two_side
86 || ctx->Extensions.ATI_separate_stencil));
87 const GLboolean ver_2_1 = (ver_2_0 &&
Brian Paule7087172010-09-21 18:13:02 -060088 ctx->Const.GLSLVersion >= 120 &&
Brian Paule0b9e332010-01-05 21:23:01 -070089 ctx->Extensions.EXT_pixel_buffer_object &&
90 ctx->Extensions.EXT_texture_sRGB);
Brian Paul44732102010-07-01 16:30:00 -060091 const GLboolean ver_3_0 = (ver_2_1 &&
Marek Olšáke5c6a922011-02-15 23:30:23 +010092 ctx->Extensions.ARB_color_buffer_float &&
93 ctx->Extensions.ARB_depth_buffer_float &&
Brian Paul44732102010-07-01 16:30:00 -060094 ctx->Extensions.ARB_half_float_pixel &&
95 ctx->Extensions.ARB_map_buffer_range &&
96 ctx->Extensions.ARB_texture_float &&
Brian Paul6988f652010-07-07 20:26:33 -060097 ctx->Extensions.ARB_texture_rg &&
Ian Romanicke2a054b2010-10-01 16:07:28 -070098 ctx->Extensions.ARB_texture_compression_rgtc &&
Brian Paul44732102010-07-01 16:30:00 -060099 ctx->Extensions.APPLE_vertex_array_object &&
100 ctx->Extensions.EXT_draw_buffers2 &&
101 ctx->Extensions.EXT_framebuffer_blit &&
102 ctx->Extensions.EXT_framebuffer_multisample &&
103 ctx->Extensions.EXT_framebuffer_object &&
104 ctx->Extensions.EXT_framebuffer_sRGB &&
105 ctx->Extensions.EXT_packed_depth_stencil &&
106 ctx->Extensions.EXT_packed_float &&
Brian Paul44732102010-07-01 16:30:00 -0600107 ctx->Extensions.EXT_texture_array &&
Brian Paul44732102010-07-01 16:30:00 -0600108 ctx->Extensions.EXT_texture_integer &&
Brian Paul6988f652010-07-07 20:26:33 -0600109 ctx->Extensions.EXT_texture_shared_exponent &&
Brian Paul44732102010-07-01 16:30:00 -0600110 ctx->Extensions.EXT_transform_feedback &&
111 ctx->Extensions.NV_conditional_render);
112 const GLboolean ver_3_1 = (ver_3_0 &&
113 ctx->Extensions.ARB_copy_buffer &&
114 ctx->Extensions.ARB_draw_instanced &&
115 ctx->Extensions.ARB_texture_buffer_object &&
116 ctx->Extensions.ARB_uniform_buffer_object &&
Marek Olšák0be36992011-03-18 13:44:51 +0100117 ctx->Extensions.EXT_texture_snorm &&
Brian Paul44732102010-07-01 16:30:00 -0600118 ctx->Extensions.NV_primitive_restart &&
119 ctx->Extensions.NV_texture_rectangle &&
120 ctx->Const.MaxVertexTextureImageUnits >= 16);
121 const GLboolean ver_3_2 = (ver_3_1 &&
122 ctx->Extensions.ARB_depth_clamp &&
123 ctx->Extensions.ARB_draw_elements_base_vertex &&
124 ctx->Extensions.ARB_fragment_coord_conventions &&
125 ctx->Extensions.ARB_geometry_shader4 &&
126 ctx->Extensions.EXT_provoking_vertex &&
127 ctx->Extensions.ARB_seamless_cube_map &&
128 ctx->Extensions.ARB_sync &&
129 ctx->Extensions.ARB_texture_multisample &&
130 ctx->Extensions.EXT_vertex_array_bgra);
131 const GLboolean ver_3_3 = (ver_3_2 &&
132 ctx->Extensions.ARB_blend_func_extended &&
133 ctx->Extensions.ARB_explicit_attrib_location &&
134 ctx->Extensions.ARB_instanced_arrays &&
135 ctx->Extensions.ARB_occlusion_query2 &&
136 ctx->Extensions.ARB_sampler_objects &&
137 ctx->Extensions.ARB_texture_rgb10_a2ui &&
138 ctx->Extensions.ARB_timer_query &&
139 ctx->Extensions.ARB_vertex_type_2_10_10_10_rev &&
140 ctx->Extensions.EXT_texture_swizzle);
141
142 if (ver_3_3) {
143 major = 3;
144 minor = 3;
145 }
146 else if (ver_3_2) {
147 major = 3;
148 minor = 2;
149 }
150 else if (ver_3_1) {
151 major = 3;
152 minor = 1;
153 }
154 else if (ver_3_0) {
155 major = 3;
156 minor = 0;
157 }
158 else if (ver_2_1) {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400159 major = 2;
160 minor = 1;
Brian Paule0b9e332010-01-05 21:23:01 -0700161 }
162 else if (ver_2_0) {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400163 major = 2;
164 minor = 0;
Brian Paule0b9e332010-01-05 21:23:01 -0700165 }
166 else if (ver_1_5) {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400167 major = 1;
168 minor = 5;
Brian Paule0b9e332010-01-05 21:23:01 -0700169 }
170 else if (ver_1_4) {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400171 major = 1;
172 minor = 4;
Brian Paule0b9e332010-01-05 21:23:01 -0700173 }
174 else if (ver_1_3) {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400175 major = 1;
176 minor = 3;
Brian Paule0b9e332010-01-05 21:23:01 -0700177 }
178 else {
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400179 major = 1;
180 minor = 2;
181 }
182
183 ctx->VersionMajor = major;
184 ctx->VersionMinor = minor;
185 ctx->VersionString = (char *) malloc(max);
186 if (ctx->VersionString) {
187 _mesa_snprintf(ctx->VersionString, max,
188 "%u.%u Mesa " MESA_VERSION_STRING,
189 ctx->VersionMajor, ctx->VersionMinor);
Brian Paule0b9e332010-01-05 21:23:01 -0700190 }
191}
192
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400193static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400194compute_version_es1(struct gl_context *ctx)
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400195{
196 static const int max = 100;
197
198 /* OpenGL ES 1.0 is derived from OpenGL 1.3 */
199 const GLboolean ver_1_0 = (ctx->Extensions.ARB_multisample &&
200 ctx->Extensions.ARB_multitexture &&
201 ctx->Extensions.ARB_texture_compression &&
202 ctx->Extensions.EXT_texture_env_add &&
203 ctx->Extensions.ARB_texture_env_combine &&
204 ctx->Extensions.ARB_texture_env_dot3);
205 /* OpenGL ES 1.1 is derived from OpenGL 1.5 */
206 const GLboolean ver_1_1 = (ver_1_0 &&
207 ctx->Extensions.EXT_point_parameters &&
208 ctx->Extensions.SGIS_generate_mipmap &&
209 ctx->Extensions.ARB_vertex_buffer_object);
210
211 if (ver_1_1) {
212 ctx->VersionMajor = 1;
213 ctx->VersionMinor = 1;
214 } else if (ver_1_0) {
215 ctx->VersionMajor = 1;
216 ctx->VersionMinor = 0;
217 } else {
218 _mesa_problem(ctx, "Incomplete OpenGL ES 1.0 support.");
219 }
220
221 ctx->VersionString = (char *) malloc(max);
222 if (ctx->VersionString) {
223 _mesa_snprintf(ctx->VersionString, max,
224 "OpenGL ES-CM 1.%d Mesa " MESA_VERSION_STRING,
225 ctx->VersionMinor);
226 }
227}
228
229static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400230compute_version_es2(struct gl_context *ctx)
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400231{
232 static const int max = 100;
233
234 /* OpenGL ES 2.0 is derived from OpenGL 2.0 */
235 const GLboolean ver_2_0 = (ctx->Extensions.ARB_multisample &&
236 ctx->Extensions.ARB_multitexture &&
237 ctx->Extensions.ARB_texture_compression &&
238 ctx->Extensions.ARB_texture_cube_map &&
239 ctx->Extensions.ARB_texture_mirrored_repeat &&
240 ctx->Extensions.EXT_blend_color &&
241 ctx->Extensions.EXT_blend_func_separate &&
242 ctx->Extensions.EXT_blend_minmax &&
243 ctx->Extensions.EXT_blend_subtract &&
244 ctx->Extensions.EXT_stencil_wrap &&
245 ctx->Extensions.ARB_vertex_buffer_object &&
246 ctx->Extensions.ARB_shader_objects &&
247 ctx->Extensions.ARB_vertex_shader &&
248 ctx->Extensions.ARB_fragment_shader &&
249 ctx->Extensions.ARB_texture_non_power_of_two &&
250 ctx->Extensions.EXT_blend_equation_separate);
251 if (ver_2_0) {
252 ctx->VersionMajor = 2;
253 ctx->VersionMinor = 0;
254 } else {
255 _mesa_problem(ctx, "Incomplete OpenGL ES 2.0 support.");
256 }
257
258 ctx->VersionString = (char *) malloc(max);
259 if (ctx->VersionString) {
260 _mesa_snprintf(ctx->VersionString, max,
261 "OpenGL ES 2.0 Mesa " MESA_VERSION_STRING);
262 }
263}
Brian Paule0b9e332010-01-05 21:23:01 -0700264
265/**
266 * Set the context's VersionMajor, VersionMinor, VersionString fields.
Chia-I Wu45313562010-09-10 10:31:06 +0800267 * This should only be called once as part of context initialization
268 * or to perform version check for GLX_ARB_create_context_profile.
Brian Paule0b9e332010-01-05 21:23:01 -0700269 */
270void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400271_mesa_compute_version(struct gl_context *ctx)
Brian Paule0b9e332010-01-05 21:23:01 -0700272{
Chia-I Wu45313562010-09-10 10:31:06 +0800273 if (ctx->VersionMajor)
274 return;
275
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400276 switch (ctx->API) {
277 case API_OPENGL:
278 compute_version(ctx);
279 break;
280 case API_OPENGLES:
281 compute_version_es1(ctx);
282 break;
283 case API_OPENGLES2:
284 compute_version_es2(ctx);
285 break;
Brian Paule0b9e332010-01-05 21:23:01 -0700286 }
Kristian Høgsberg29107d42010-04-21 16:14:18 -0400287
Brian Paule0b9e332010-01-05 21:23:01 -0700288}