mesa: remove driver hooks for GetFloat/Integer/Doublev, etc
[mesa.git] / src / mesa / main / getstring.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2008 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 "context.h"
29 #include "get.h"
30 #include "enums.h"
31 #include "extensions.h"
32
33 static const GLubyte *
34 shading_laguage_version(GLcontext *ctx)
35 {
36 switch (ctx->API) {
37 #if FEATURE_ARB_shading_language_100
38 case API_OPENGL:
39 if (ctx->Extensions.ARB_shading_language_120)
40 return (const GLubyte *) "1.20";
41 else if (ctx->Extensions.ARB_shading_language_100)
42 return (const GLubyte *) "1.10";
43 goto error;
44 #endif
45
46 case API_OPENGLES2:
47 return (const GLubyte *) "OpenGL ES GLSL ES 1.0.16";
48
49 case API_OPENGLES:
50 default:
51 error:
52 _mesa_error( ctx, GL_INVALID_ENUM, "glGetString" );
53 return (const GLubyte *) 0;
54 }
55 }
56
57
58 /**
59 * Query string-valued state. The return value should _not_ be freed by
60 * the caller.
61 *
62 * \param name the state variable to query.
63 *
64 * \sa glGetString().
65 *
66 * Tries to get the string from dd_function_table::GetString, otherwise returns
67 * the hardcoded strings.
68 */
69 const GLubyte * GLAPIENTRY
70 _mesa_GetString( GLenum name )
71 {
72 GET_CURRENT_CONTEXT(ctx);
73 static const char *vendor = "Brian Paul";
74 static const char *renderer = "Mesa";
75
76 if (!ctx)
77 return NULL;
78
79 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, NULL);
80
81 /* this is a required driver function */
82 assert(ctx->Driver.GetString);
83 {
84 /* Give the driver the chance to handle this query */
85 const GLubyte *str = (*ctx->Driver.GetString)(ctx, name);
86 if (str)
87 return str;
88 }
89
90 switch (name) {
91 case GL_VENDOR:
92 return (const GLubyte *) vendor;
93 case GL_RENDERER:
94 return (const GLubyte *) renderer;
95 case GL_VERSION:
96 return (const GLubyte *) ctx->VersionString;
97 case GL_EXTENSIONS:
98 if (!ctx->Extensions.String)
99 ctx->Extensions.String = _mesa_make_extension_string(ctx);
100 return (const GLubyte *) ctx->Extensions.String;
101 #if FEATURE_ARB_shading_language_100 || FEATURE_ES2
102 case GL_SHADING_LANGUAGE_VERSION:
103 return shading_laguage_version(ctx);
104 #endif
105 #if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program || \
106 FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
107 case GL_PROGRAM_ERROR_STRING_NV:
108 if (ctx->Extensions.NV_fragment_program ||
109 ctx->Extensions.ARB_fragment_program ||
110 ctx->Extensions.NV_vertex_program ||
111 ctx->Extensions.ARB_vertex_program) {
112 return (const GLubyte *) ctx->Program.ErrorString;
113 }
114 /* FALL-THROUGH */
115 #endif
116 default:
117 _mesa_error( ctx, GL_INVALID_ENUM, "glGetString" );
118 return (const GLubyte *) 0;
119 }
120 }
121
122
123 /**
124 * GL3
125 */
126 const GLubyte * GLAPIENTRY
127 _mesa_GetStringi(GLenum name, GLuint index)
128 {
129 GET_CURRENT_CONTEXT(ctx);
130
131 if (!ctx)
132 return NULL;
133
134 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, NULL);
135
136 switch (name) {
137 case GL_EXTENSIONS:
138 if (index >= _mesa_get_extension_count(ctx)) {
139 _mesa_error(ctx, GL_INVALID_VALUE, "glGetStringi(index=%u)", index);
140 return (const GLubyte *) 0;
141 }
142 return _mesa_get_enabled_extension(ctx, index);
143 default:
144 _mesa_error( ctx, GL_INVALID_ENUM, "glGetString" );
145 return (const GLubyte *) 0;
146 }
147 }
148
149
150
151 /**
152 * Return pointer-valued state, such as a vertex array pointer.
153 *
154 * \param pname names state to be queried
155 * \param params returns the pointer value
156 *
157 * \sa glGetPointerv().
158 *
159 * Tries to get the specified pointer via dd_function_table::GetPointerv,
160 * otherwise gets the specified pointer from the current context.
161 */
162 void GLAPIENTRY
163 _mesa_GetPointerv( GLenum pname, GLvoid **params )
164 {
165 GET_CURRENT_CONTEXT(ctx);
166 const GLuint clientUnit = ctx->Array.ActiveTexture;
167 ASSERT_OUTSIDE_BEGIN_END(ctx);
168
169 if (!params)
170 return;
171
172 if (MESA_VERBOSE & VERBOSE_API)
173 _mesa_debug(ctx, "glGetPointerv %s\n", _mesa_lookup_enum_by_nr(pname));
174
175 switch (pname) {
176 case GL_VERTEX_ARRAY_POINTER:
177 *params = (GLvoid *) ctx->Array.ArrayObj->Vertex.Ptr;
178 break;
179 case GL_NORMAL_ARRAY_POINTER:
180 *params = (GLvoid *) ctx->Array.ArrayObj->Normal.Ptr;
181 break;
182 case GL_COLOR_ARRAY_POINTER:
183 *params = (GLvoid *) ctx->Array.ArrayObj->Color.Ptr;
184 break;
185 case GL_SECONDARY_COLOR_ARRAY_POINTER_EXT:
186 *params = (GLvoid *) ctx->Array.ArrayObj->SecondaryColor.Ptr;
187 break;
188 case GL_FOG_COORDINATE_ARRAY_POINTER_EXT:
189 *params = (GLvoid *) ctx->Array.ArrayObj->FogCoord.Ptr;
190 break;
191 case GL_INDEX_ARRAY_POINTER:
192 *params = (GLvoid *) ctx->Array.ArrayObj->Index.Ptr;
193 break;
194 case GL_TEXTURE_COORD_ARRAY_POINTER:
195 *params = (GLvoid *) ctx->Array.ArrayObj->TexCoord[clientUnit].Ptr;
196 break;
197 case GL_EDGE_FLAG_ARRAY_POINTER:
198 *params = (GLvoid *) ctx->Array.ArrayObj->EdgeFlag.Ptr;
199 break;
200 case GL_FEEDBACK_BUFFER_POINTER:
201 *params = ctx->Feedback.Buffer;
202 break;
203 case GL_SELECTION_BUFFER_POINTER:
204 *params = ctx->Select.Buffer;
205 break;
206 #if FEATURE_point_size_array
207 case GL_POINT_SIZE_ARRAY_POINTER_OES:
208 *params = (GLvoid *) ctx->Array.ArrayObj->PointSize.Ptr;
209 break;
210 #endif
211 default:
212 _mesa_error( ctx, GL_INVALID_ENUM, "glGetPointerv" );
213 return;
214 }
215 }
216
217
218 /**
219 * Returns the current GL error code, or GL_NO_ERROR.
220 * \return current error code
221 *
222 * Returns __GLcontextRec::ErrorValue.
223 */
224 GLenum GLAPIENTRY
225 _mesa_GetError( void )
226 {
227 GET_CURRENT_CONTEXT(ctx);
228 GLenum e = ctx->ErrorValue;
229 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
230
231 if (MESA_VERBOSE & VERBOSE_API)
232 _mesa_debug(ctx, "glGetError <-- %s\n", _mesa_lookup_enum_by_nr(e));
233
234 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
235 ctx->ErrorDebugCount = 0;
236 return e;
237 }