merge from master
[mesa.git] / src / mesa / main / getstring.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.2
4 *
5 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26
27 #include "glheader.h"
28 #include "colormac.h"
29 #include "context.h"
30 #include "get.h"
31 #include "version.h"
32 #include "enums.h"
33 #include "extensions.h"
34
35
36 /**
37 * Query string-valued state. The return value should _not_ be freed by
38 * the caller.
39 *
40 * \param name the state variable to query.
41 *
42 * \sa glGetString().
43 *
44 * Tries to get the string from dd_function_table::GetString, otherwise returns
45 * the hardcoded strings.
46 */
47 const GLubyte * GLAPIENTRY
48 _mesa_GetString( GLenum name )
49 {
50 GET_CURRENT_CONTEXT(ctx);
51 static const char *vendor = "Brian Paul";
52 static const char *renderer = "Mesa";
53 static const char *version_1_2 = "1.2 Mesa " MESA_VERSION_STRING;
54 static const char *version_1_3 = "1.3 Mesa " MESA_VERSION_STRING;
55 static const char *version_1_4 = "1.4 Mesa " MESA_VERSION_STRING;
56 static const char *version_1_5 = "1.5 Mesa " MESA_VERSION_STRING;
57 static const char *version_2_0 = "2.0 Mesa " MESA_VERSION_STRING;
58 static const char *version_2_1 = "2.1 Mesa " MESA_VERSION_STRING;
59
60 #if FEATURE_ARB_shading_language_100
61 static const char *sl_version_110 = "1.10 Mesa " MESA_VERSION_STRING;
62 #endif
63
64 if (!ctx)
65 return NULL;
66
67 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, NULL);
68
69 /* this is a required driver function */
70 assert(ctx->Driver.GetString);
71 {
72 /* Give the driver the chance to handle this query */
73 const GLubyte *str = (*ctx->Driver.GetString)(ctx, name);
74 if (str)
75 return str;
76 }
77
78 switch (name) {
79 case GL_VENDOR:
80 return (const GLubyte *) vendor;
81 case GL_RENDERER:
82 return (const GLubyte *) renderer;
83 case GL_VERSION:
84 if (ctx->Extensions.ARB_multisample &&
85 ctx->Extensions.ARB_multitexture &&
86 ctx->Extensions.ARB_texture_border_clamp &&
87 ctx->Extensions.ARB_texture_compression &&
88 ctx->Extensions.ARB_texture_cube_map &&
89 ctx->Extensions.EXT_texture_env_add &&
90 ctx->Extensions.ARB_texture_env_combine &&
91 ctx->Extensions.ARB_texture_env_dot3) {
92 if (ctx->Extensions.ARB_depth_texture &&
93 ctx->Extensions.ARB_shadow &&
94 ctx->Extensions.ARB_texture_env_crossbar &&
95 ctx->Extensions.ARB_texture_mirrored_repeat &&
96 ctx->Extensions.ARB_window_pos &&
97 ctx->Extensions.EXT_blend_color &&
98 ctx->Extensions.EXT_blend_func_separate &&
99 ctx->Extensions.EXT_blend_logic_op &&
100 ctx->Extensions.EXT_blend_minmax &&
101 ctx->Extensions.EXT_blend_subtract &&
102 ctx->Extensions.EXT_fog_coord &&
103 ctx->Extensions.EXT_multi_draw_arrays &&
104 ctx->Extensions.EXT_point_parameters && /*aka ARB*/
105 ctx->Extensions.EXT_secondary_color &&
106 ctx->Extensions.EXT_stencil_wrap &&
107 ctx->Extensions.EXT_texture_lod_bias &&
108 ctx->Extensions.SGIS_generate_mipmap) {
109 if (ctx->Extensions.ARB_occlusion_query &&
110 ctx->Extensions.ARB_vertex_buffer_object &&
111 ctx->Extensions.EXT_shadow_funcs) {
112 if (ctx->Extensions.ARB_draw_buffers &&
113 ctx->Extensions.ARB_point_sprite &&
114 ctx->Extensions.ARB_shader_objects &&
115 ctx->Extensions.ARB_vertex_shader &&
116 ctx->Extensions.ARB_fragment_shader &&
117 ctx->Extensions.ARB_texture_non_power_of_two &&
118 ctx->Extensions.EXT_blend_equation_separate) {
119 if (ctx->Extensions.ARB_shading_language_120 &&
120 ctx->Extensions.EXT_pixel_buffer_object &&
121 ctx->Extensions.EXT_texture_sRGB) {
122 return (const GLubyte *) version_2_1;
123 }
124 else {
125 return (const GLubyte *) version_2_0;
126 }
127 }
128 else {
129 return (const GLubyte *) version_1_5;
130 }
131 }
132 else {
133 return (const GLubyte *) version_1_4;
134 }
135 }
136 else {
137 return (const GLubyte *) version_1_3;
138 }
139 }
140 else {
141 return (const GLubyte *) version_1_2;
142 }
143 case GL_EXTENSIONS:
144 if (!ctx->Extensions.String)
145 ctx->Extensions.String = _mesa_make_extension_string(ctx);
146 return (const GLubyte *) ctx->Extensions.String;
147 #if FEATURE_ARB_shading_language_100
148 case GL_SHADING_LANGUAGE_VERSION_ARB:
149 if (ctx->Extensions.ARB_shading_language_100)
150 return (const GLubyte *) sl_version_110;
151 goto error;
152 #endif
153 #if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program || \
154 FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
155 case GL_PROGRAM_ERROR_STRING_NV:
156 if (ctx->Extensions.NV_fragment_program ||
157 ctx->Extensions.ARB_fragment_program ||
158 ctx->Extensions.NV_vertex_program ||
159 ctx->Extensions.ARB_vertex_program) {
160 return (const GLubyte *) ctx->Program.ErrorString;
161 }
162 /* FALL-THROUGH */
163 #endif
164 #if FEATURE_ARB_shading_language_100
165 error:
166 #endif
167 default:
168 _mesa_error( ctx, GL_INVALID_ENUM, "glGetString" );
169 return (const GLubyte *) 0;
170 }
171 }
172
173
174 /**
175 * Return pointer-valued state, such as a vertex array pointer.
176 *
177 * \param pname names state to be queried
178 * \param params returns the pointer value
179 *
180 * \sa glGetPointerv().
181 *
182 * Tries to get the specified pointer via dd_function_table::GetPointerv,
183 * otherwise gets the specified pointer from the current context.
184 */
185 void GLAPIENTRY
186 _mesa_GetPointerv( GLenum pname, GLvoid **params )
187 {
188 GET_CURRENT_CONTEXT(ctx);
189 const GLuint clientUnit = ctx->Array.ActiveTexture;
190 ASSERT_OUTSIDE_BEGIN_END(ctx);
191
192 if (!params)
193 return;
194
195 if (MESA_VERBOSE & VERBOSE_API)
196 _mesa_debug(ctx, "glGetPointerv %s\n", _mesa_lookup_enum_by_nr(pname));
197
198 if (ctx->Driver.GetPointerv
199 && (*ctx->Driver.GetPointerv)(ctx, pname, params))
200 return;
201
202 switch (pname) {
203 case GL_VERTEX_ARRAY_POINTER:
204 *params = (GLvoid *) ctx->Array.ArrayObj->Vertex.Ptr;
205 break;
206 case GL_NORMAL_ARRAY_POINTER:
207 *params = (GLvoid *) ctx->Array.ArrayObj->Normal.Ptr;
208 break;
209 case GL_COLOR_ARRAY_POINTER:
210 *params = (GLvoid *) ctx->Array.ArrayObj->Color.Ptr;
211 break;
212 case GL_SECONDARY_COLOR_ARRAY_POINTER_EXT:
213 *params = (GLvoid *) ctx->Array.ArrayObj->SecondaryColor.Ptr;
214 break;
215 case GL_FOG_COORDINATE_ARRAY_POINTER_EXT:
216 *params = (GLvoid *) ctx->Array.ArrayObj->FogCoord.Ptr;
217 break;
218 case GL_INDEX_ARRAY_POINTER:
219 *params = (GLvoid *) ctx->Array.ArrayObj->Index.Ptr;
220 break;
221 case GL_TEXTURE_COORD_ARRAY_POINTER:
222 *params = (GLvoid *) ctx->Array.ArrayObj->TexCoord[clientUnit].Ptr;
223 break;
224 case GL_EDGE_FLAG_ARRAY_POINTER:
225 *params = (GLvoid *) ctx->Array.ArrayObj->EdgeFlag.Ptr;
226 break;
227 case GL_FEEDBACK_BUFFER_POINTER:
228 *params = ctx->Feedback.Buffer;
229 break;
230 case GL_SELECTION_BUFFER_POINTER:
231 *params = ctx->Select.Buffer;
232 break;
233 #if FEATURE_MESA_program_debug
234 case GL_FRAGMENT_PROGRAM_CALLBACK_FUNC_MESA:
235 if (!ctx->Extensions.MESA_program_debug) {
236 _mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
237 return;
238 }
239 *params = *(GLvoid **) &ctx->FragmentProgram.Callback;
240 break;
241 case GL_FRAGMENT_PROGRAM_CALLBACK_DATA_MESA:
242 if (!ctx->Extensions.MESA_program_debug) {
243 _mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
244 return;
245 }
246 *params = ctx->FragmentProgram.CallbackData;
247 break;
248 case GL_VERTEX_PROGRAM_CALLBACK_FUNC_MESA:
249 if (!ctx->Extensions.MESA_program_debug) {
250 _mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
251 return;
252 }
253 *params = *(GLvoid **) &ctx->VertexProgram.Callback;
254 break;
255 case GL_VERTEX_PROGRAM_CALLBACK_DATA_MESA:
256 if (!ctx->Extensions.MESA_program_debug) {
257 _mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
258 return;
259 }
260 *params = ctx->VertexProgram.CallbackData;
261 break;
262 #endif
263 default:
264 _mesa_error( ctx, GL_INVALID_ENUM, "glGetPointerv" );
265 return;
266 }
267 }
268
269
270 /**
271 * Returns the current GL error code, or GL_NO_ERROR.
272 * \return current error code
273 *
274 * Returns __GLcontextRec::ErrorValue.
275 */
276 GLenum GLAPIENTRY
277 _mesa_GetError( void )
278 {
279 GET_CURRENT_CONTEXT(ctx);
280 GLenum e = ctx->ErrorValue;
281 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
282
283 if (MESA_VERBOSE & VERBOSE_API)
284 _mesa_debug(ctx, "glGetError <-- %s\n", _mesa_lookup_enum_by_nr(e));
285
286 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
287 return e;
288 }