_mesa_GetInteger/Float/Boolean/Doublev() are now generated with the new
get_gen.py Python script. Moved GetString(), GetPointer(), GetError() into new getstring.c file.
This commit is contained in:
7728
src/mesa/main/get.c
7728
src/mesa/main/get.c
File diff suppressed because it is too large
Load Diff
1149
src/mesa/main/get_gen.py
Normal file
1149
src/mesa/main/get_gen.py
Normal file
File diff suppressed because it is too large
Load Diff
261
src/mesa/main/getstring.c
Normal file
261
src/mesa/main/getstring.c
Normal file
@@ -0,0 +1,261 @@
|
|||||||
|
/*
|
||||||
|
* Mesa 3-D graphics library
|
||||||
|
* Version: 6.3
|
||||||
|
*
|
||||||
|
* Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
* copy of this software and associated documentation files (the "Software"),
|
||||||
|
* to deal in the Software without restriction, including without limitation
|
||||||
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||||
|
* and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included
|
||||||
|
* in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||||
|
* BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include "glheader.h"
|
||||||
|
#include "colormac.h"
|
||||||
|
#include "context.h"
|
||||||
|
#include "get.h"
|
||||||
|
#include "version.h"
|
||||||
|
#include "enums.h"
|
||||||
|
#include "extensions.h"
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query string-valued state. The return value should _not_ be freed by
|
||||||
|
* the caller.
|
||||||
|
*
|
||||||
|
* \param name the state variable to query.
|
||||||
|
*
|
||||||
|
* \sa glGetString().
|
||||||
|
*
|
||||||
|
* Tries to get the string from dd_function_table::GetString, otherwise returns
|
||||||
|
* the hardcoded strings.
|
||||||
|
*/
|
||||||
|
const GLubyte * GLAPIENTRY
|
||||||
|
_mesa_GetString( GLenum name )
|
||||||
|
{
|
||||||
|
GET_CURRENT_CONTEXT(ctx);
|
||||||
|
static const char *vendor = "Brian Paul";
|
||||||
|
static const char *renderer = "Mesa";
|
||||||
|
static const char *version_1_2 = "1.2 Mesa " MESA_VERSION_STRING;
|
||||||
|
static const char *version_1_3 = "1.3 Mesa " MESA_VERSION_STRING;
|
||||||
|
static const char *version_1_4 = "1.4 Mesa " MESA_VERSION_STRING;
|
||||||
|
static const char *version_1_5 = "1.5 Mesa " MESA_VERSION_STRING;
|
||||||
|
static const char *version_2_0 = "1.5 Mesa " MESA_VERSION_STRING;/*XXX FIX*/
|
||||||
|
|
||||||
|
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
|
||||||
|
|
||||||
|
/* this is a required driver function */
|
||||||
|
assert(ctx->Driver.GetString);
|
||||||
|
{
|
||||||
|
/* Give the driver the chance to handle this query */
|
||||||
|
const GLubyte *str = (*ctx->Driver.GetString)(ctx, name);
|
||||||
|
if (str)
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (name) {
|
||||||
|
case GL_VENDOR:
|
||||||
|
return (const GLubyte *) vendor;
|
||||||
|
case GL_RENDERER:
|
||||||
|
return (const GLubyte *) renderer;
|
||||||
|
case GL_VERSION:
|
||||||
|
if (ctx->Extensions.ARB_multisample &&
|
||||||
|
ctx->Extensions.ARB_multitexture &&
|
||||||
|
ctx->Extensions.ARB_texture_border_clamp &&
|
||||||
|
ctx->Extensions.ARB_texture_compression &&
|
||||||
|
ctx->Extensions.ARB_texture_cube_map &&
|
||||||
|
ctx->Extensions.EXT_texture_env_add &&
|
||||||
|
ctx->Extensions.ARB_texture_env_combine &&
|
||||||
|
ctx->Extensions.ARB_texture_env_dot3) {
|
||||||
|
if (ctx->Extensions.ARB_depth_texture &&
|
||||||
|
ctx->Extensions.ARB_shadow &&
|
||||||
|
ctx->Extensions.ARB_texture_env_crossbar &&
|
||||||
|
ctx->Extensions.ARB_texture_mirrored_repeat &&
|
||||||
|
ctx->Extensions.ARB_window_pos &&
|
||||||
|
ctx->Extensions.EXT_blend_color &&
|
||||||
|
ctx->Extensions.EXT_blend_func_separate &&
|
||||||
|
ctx->Extensions.EXT_blend_logic_op &&
|
||||||
|
ctx->Extensions.EXT_blend_minmax &&
|
||||||
|
ctx->Extensions.EXT_blend_subtract &&
|
||||||
|
ctx->Extensions.EXT_fog_coord &&
|
||||||
|
ctx->Extensions.EXT_multi_draw_arrays &&
|
||||||
|
ctx->Extensions.EXT_point_parameters && /*aka ARB*/
|
||||||
|
ctx->Extensions.EXT_secondary_color &&
|
||||||
|
ctx->Extensions.EXT_stencil_wrap &&
|
||||||
|
ctx->Extensions.EXT_texture_lod_bias &&
|
||||||
|
ctx->Extensions.SGIS_generate_mipmap) {
|
||||||
|
if (ctx->Extensions.ARB_occlusion_query &&
|
||||||
|
ctx->Extensions.ARB_vertex_buffer_object &&
|
||||||
|
ctx->Extensions.EXT_shadow_funcs) {
|
||||||
|
if (ctx->Extensions.ARB_draw_buffers &&
|
||||||
|
ctx->Extensions.ARB_point_sprite &&
|
||||||
|
ctx->Extensions.ARB_texture_non_power_of_two &&
|
||||||
|
ctx->Extensions.EXT_stencil_two_side) {
|
||||||
|
return (const GLubyte *) version_2_0;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return (const GLubyte *) version_1_5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return (const GLubyte *) version_1_4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return (const GLubyte *) version_1_3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return (const GLubyte *) version_1_2;
|
||||||
|
}
|
||||||
|
case GL_EXTENSIONS:
|
||||||
|
if (!ctx->Extensions.String)
|
||||||
|
ctx->Extensions.String = _mesa_make_extension_string(ctx);
|
||||||
|
return (const GLubyte *) ctx->Extensions.String;
|
||||||
|
#if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program || \
|
||||||
|
FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
|
||||||
|
case GL_PROGRAM_ERROR_STRING_NV:
|
||||||
|
if (ctx->Extensions.NV_fragment_program ||
|
||||||
|
ctx->Extensions.ARB_fragment_program ||
|
||||||
|
ctx->Extensions.NV_vertex_program ||
|
||||||
|
ctx->Extensions.ARB_vertex_program) {
|
||||||
|
return (const GLubyte *) ctx->Program.ErrorString;
|
||||||
|
}
|
||||||
|
/* FALL-THROUGH */
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
_mesa_error( ctx, GL_INVALID_ENUM, "glGetString" );
|
||||||
|
return (const GLubyte *) 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return pointer-valued state, such as a vertex array pointer.
|
||||||
|
*
|
||||||
|
* \param pname names state to be queried
|
||||||
|
* \param params returns the pointer value
|
||||||
|
*
|
||||||
|
* \sa glGetPointerv().
|
||||||
|
*
|
||||||
|
* Tries to get the specified pointer via dd_function_table::GetPointerv,
|
||||||
|
* otherwise gets the specified pointer from the current context.
|
||||||
|
*/
|
||||||
|
void GLAPIENTRY
|
||||||
|
_mesa_GetPointerv( GLenum pname, GLvoid **params )
|
||||||
|
{
|
||||||
|
GET_CURRENT_CONTEXT(ctx);
|
||||||
|
const GLuint clientUnit = ctx->Array.ActiveTexture;
|
||||||
|
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
||||||
|
|
||||||
|
if (!params)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (MESA_VERBOSE & VERBOSE_API)
|
||||||
|
_mesa_debug(ctx, "glGetPointerv %s\n", _mesa_lookup_enum_by_nr(pname));
|
||||||
|
|
||||||
|
if (ctx->Driver.GetPointerv
|
||||||
|
&& (*ctx->Driver.GetPointerv)(ctx, pname, params))
|
||||||
|
return;
|
||||||
|
|
||||||
|
switch (pname) {
|
||||||
|
case GL_VERTEX_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.Vertex.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_NORMAL_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.Normal.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_COLOR_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.Color.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_SECONDARY_COLOR_ARRAY_POINTER_EXT:
|
||||||
|
*params = (GLvoid *) ctx->Array.SecondaryColor.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_FOG_COORDINATE_ARRAY_POINTER_EXT:
|
||||||
|
*params = (GLvoid *) ctx->Array.FogCoord.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_INDEX_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.Index.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_TEXTURE_COORD_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.TexCoord[clientUnit].Ptr;
|
||||||
|
break;
|
||||||
|
case GL_EDGE_FLAG_ARRAY_POINTER:
|
||||||
|
*params = (GLvoid *) ctx->Array.EdgeFlag.Ptr;
|
||||||
|
break;
|
||||||
|
case GL_FEEDBACK_BUFFER_POINTER:
|
||||||
|
*params = ctx->Feedback.Buffer;
|
||||||
|
break;
|
||||||
|
case GL_SELECTION_BUFFER_POINTER:
|
||||||
|
*params = ctx->Select.Buffer;
|
||||||
|
break;
|
||||||
|
#if FEATURE_MESA_program_debug
|
||||||
|
case GL_FRAGMENT_PROGRAM_CALLBACK_FUNC_MESA:
|
||||||
|
if (!ctx->Extensions.MESA_program_debug) {
|
||||||
|
_mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
*params = *(GLvoid **) &ctx->FragmentProgram.Callback;
|
||||||
|
break;
|
||||||
|
case GL_FRAGMENT_PROGRAM_CALLBACK_DATA_MESA:
|
||||||
|
if (!ctx->Extensions.MESA_program_debug) {
|
||||||
|
_mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
*params = ctx->FragmentProgram.CallbackData;
|
||||||
|
break;
|
||||||
|
case GL_VERTEX_PROGRAM_CALLBACK_FUNC_MESA:
|
||||||
|
if (!ctx->Extensions.MESA_program_debug) {
|
||||||
|
_mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
*params = *(GLvoid **) &ctx->VertexProgram.Callback;
|
||||||
|
break;
|
||||||
|
case GL_VERTEX_PROGRAM_CALLBACK_DATA_MESA:
|
||||||
|
if (!ctx->Extensions.MESA_program_debug) {
|
||||||
|
_mesa_error(ctx, GL_INVALID_ENUM, "glGetPointerv");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
*params = ctx->VertexProgram.CallbackData;
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
_mesa_error( ctx, GL_INVALID_ENUM, "glGetPointerv" );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the current GL error code, or GL_NO_ERROR.
|
||||||
|
* \return current error code
|
||||||
|
*
|
||||||
|
* Returns __GLcontextRec::ErrorValue.
|
||||||
|
*/
|
||||||
|
GLenum GLAPIENTRY
|
||||||
|
_mesa_GetError( void )
|
||||||
|
{
|
||||||
|
GET_CURRENT_CONTEXT(ctx);
|
||||||
|
GLenum e = ctx->ErrorValue;
|
||||||
|
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
|
||||||
|
|
||||||
|
if (MESA_VERBOSE & VERBOSE_API)
|
||||||
|
_mesa_debug(ctx, "glGetError <-- %s\n", _mesa_lookup_enum_by_nr(e));
|
||||||
|
|
||||||
|
ctx->ErrorValue = (GLenum) GL_NO_ERROR;
|
||||||
|
return e;
|
||||||
|
}
|
@@ -26,6 +26,7 @@ MAIN_SOURCES = \
|
|||||||
main/feedback.c \
|
main/feedback.c \
|
||||||
main/fog.c \
|
main/fog.c \
|
||||||
main/get.c \
|
main/get.c \
|
||||||
|
main/getstring.c \
|
||||||
main/hash.c \
|
main/hash.c \
|
||||||
main/hint.c \
|
main/hint.c \
|
||||||
main/histogram.c \
|
main/histogram.c \
|
||||||
|
Reference in New Issue
Block a user