Files
third_party_mesa3d/src/mesa/main/config.h

208 lines
4.5 KiB
C
Raw Normal View History

/* $Id: config.h,v 1.26 2000/12/28 22:11:05 keithw Exp $ */
1999-08-19 00:55:39 +00:00
/*
* Mesa 3-D graphics library
* Version: 3.5
1999-08-19 00:55:39 +00:00
*
2000-01-13 00:34:45 +00:00
* Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
1999-08-19 00:55:39 +00:00
*
* 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.
*/
/*
* Tunable configuration parameters.
*/
#ifndef CONFIG_H
#define CONFIG_H
#ifdef HAVE_CONFIG_H
#include "conf.h"
#endif
1999-08-19 00:55:39 +00:00
/*
* OpenGL implementation limits
*/
/* Maximum modelview matrix stack depth: */
#define MAX_MODELVIEW_STACK_DEPTH 32
/* Maximum projection matrix stack depth: */
#define MAX_PROJECTION_STACK_DEPTH 32
/* Maximum texture matrix stack depth: */
#define MAX_TEXTURE_STACK_DEPTH 10
2000-04-08 18:57:45 +00:00
/* Maximum color matrix stack depth: */
#define MAX_COLOR_STACK_DEPTH 4
1999-08-19 00:55:39 +00:00
/* Maximum attribute stack depth: */
#define MAX_ATTRIB_STACK_DEPTH 16
/* Maximum client attribute stack depth: */
#define MAX_CLIENT_ATTRIB_STACK_DEPTH 16
/* Maximum recursion depth of display list calls: */
#define MAX_LIST_NESTING 64
/* Maximum number of lights: */
#define MAX_LIGHTS 8
/* Maximum user-defined clipping planes: */
#define MAX_CLIP_PLANES 6
/* Maximum pixel map lookup table size: */
#define MAX_PIXEL_MAP_TABLE 256
/* Number of auxillary color buffers: */
#define NUM_AUX_BUFFERS 0
/* Maximum order (degree) of curves: */
#ifdef AMIGA
# define MAX_EVAL_ORDER 12
#else
# define MAX_EVAL_ORDER 30
#endif
/* Maximum Name stack depth */
#define MAX_NAME_STACK_DEPTH 64
/* Min and Max point sizes and granularity */
#define MIN_POINT_SIZE 1.0
#define MAX_POINT_SIZE 10.0
#define POINT_SIZE_GRANULARITY 0.1
/* Min and Max line widths and granularity */
#define MIN_LINE_WIDTH 1.0
#define MAX_LINE_WIDTH 10.0
2000-02-03 19:40:35 +00:00
#define LINE_WIDTH_GRANULARITY 0.1
1999-08-19 00:55:39 +00:00
2000-04-12 00:27:37 +00:00
/* Max texture palette / color table size */
#define MAX_COLOR_TABLE_SIZE 256
1999-08-19 00:55:39 +00:00
/* Number of texture levels */
#define MAX_TEXTURE_LEVELS 12
/* Number of texture units - GL_ARB_multitexture */
#define MAX_TEXTURE_UNITS 8
1999-08-19 00:55:39 +00:00
/* Maximum viewport/image size: */
#define MAX_WIDTH 2048
1999-08-19 00:55:39 +00:00
#define MAX_HEIGHT 1200
/* Maxmimum size for CVA. May be overridden by the drivers. */
#define MAX_ARRAY_LOCK_SIZE 3000
2000-02-03 19:40:35 +00:00
/* Subpixel precision for antialiasing, window coordinate snapping */
#define SUB_PIXEL_BITS 4
2000-04-07 00:19:41 +00:00
/* Size of histogram tables */
#define HISTOGRAM_TABLE_SIZE 256
/* Max convolution filter sizes */
2000-08-21 14:24:53 +00:00
#define MAX_CONVOLUTION_WIDTH 9
#define MAX_CONVOLUTION_HEIGHT 9
1999-08-19 00:55:39 +00:00
/* GL_ARB_texture_compression */
#define MAX_COMPRESSED_TEXTURE_FORMATS 25
1999-08-19 00:55:39 +00:00
/*
* Mesa-specific parameters
*/
/*
* Bits per accumulation buffer color component: 8 or 16
*/
#define ACCUM_BITS 16
/*
* Bits per depth buffer value. Any reasonable value up to 31 will
* work. 32 doesn't work because of integer overflow problems in the
* rasterizer code.
*/
2000-03-03 17:47:39 +00:00
#define DEFAULT_SOFTWARE_DEPTH_BITS 16
#if DEFAULT_SOFTWARE_DEPTH_BITS <= 16
2000-03-03 17:47:39 +00:00
#define DEFAULT_SOFTWARE_DEPTH_TYPE GLushort
#else
#define DEFAULT_SOFTWARE_DEPTH_TYPE GLuint
#endif
2000-03-03 17:47:39 +00:00
1999-08-19 00:55:39 +00:00
/*
* Bits per stencil value: 8
*/
#define STENCIL_BITS 8
/*
* Bits per color channel (must be 8 at this time!)
*/
#define CHAN_BITS 8
/*
* Color channel component order
* (changes will almost certainly cause problems at this time)
*/
#define RCOMP 0
#define GCOMP 1
#define BCOMP 2
#define ACOMP 3
/*
* Language/compiler stuff
*/
/* Some compilers don't like some of Mesa's const usage */
#ifdef NO_CONST
# define CONST
#else
# define CONST const
#endif
1999-08-19 00:55:39 +00:00
/* Function inlining */
#if defined(__GNUC__)
# define INLINE __inline__
#elif defined(__MSC__)
# define INLINE __inline
#else
# define INLINE
#endif
#ifdef DEBUG
# define ASSERT(X) assert(X)
#else
# define ASSERT(X)
#endif
1999-08-19 00:55:39 +00:00
#endif