2 * (C) Copyright IBM Corporation 2003
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEM, IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 * \file glcontextmodes.h
27 * \author Ian Romanick <idr@us.ibm.com>
30 #ifndef GLCONTEXTMODES_H
31 #define GLCONTEXTMODES_H
34 struct glx_config
* next
;
38 GLboolean colorIndexMode
;
39 GLuint doubleBufferMode
;
42 GLint redBits
, greenBits
, blueBits
, alphaBits
; /* bits per comp */
43 GLuint redMask
, greenMask
, blueMask
, alphaMask
;
44 GLint rgbBits
; /* total bits for rgb */
45 GLint indexBits
; /* total bits for colorindex */
47 GLint accumRedBits
, accumGreenBits
, accumBlueBits
, accumAlphaBits
;
59 GLint visualType
; /**< One of the GLX X visual types. (i.e.,
60 * \c GLX_TRUE_COLOR, etc.)
63 /* EXT_visual_rating / GLX 1.2 */
66 /* EXT_visual_info / GLX 1.2 */
67 GLint transparentPixel
;
68 /* colors are floats scaled to ints */
69 GLint transparentRed
, transparentGreen
, transparentBlue
, transparentAlpha
;
70 GLint transparentIndex
;
72 /* ARB_multisample / SGIS_multisample */
76 /* SGIX_fbconfig / GLX 1.3 */
82 /* SGIX_pbuffer / GLX 1.3 */
83 GLint maxPbufferWidth
;
84 GLint maxPbufferHeight
;
85 GLint maxPbufferPixels
;
86 GLint optimalPbufferWidth
; /* Only for SGIX_pbuffer. */
87 GLint optimalPbufferHeight
; /* Only for SGIX_pbuffer. */
89 /* SGIX_visual_select_group */
90 GLint visualSelectGroup
;
97 /* EXT_texture_from_pixmap */
98 GLint bindToTextureRgb
;
99 GLint bindToTextureRgba
;
100 GLint bindToMipmapTexture
;
101 GLint bindToTextureTargets
;
104 /* EXT_framebuffer_sRGB */
108 #define __GLX_MIN_CONFIG_PROPS 18
109 #define __GLX_MAX_CONFIG_PROPS 500
110 #define __GLX_EXT_CONFIG_PROPS 10
113 ** Since we send all non-core visual properties as token, value pairs,
114 ** we require 2 words across the wire. In order to maintain backwards
115 ** compatibility, we need to send the total number of words that the
116 ** VisualConfigs are sent back in so old libraries can simply "ignore"
117 ** the new properties.
119 #define __GLX_TOTAL_CONFIG \
120 (__GLX_MIN_CONFIG_PROPS + 2 * __GLX_EXT_CONFIG_PROPS)
122 extern GLint
_gl_convert_from_x_visual_type(int visualType
);
125 glx_config_get(struct glx_config
* mode
, int attribute
, int *value_return
);
126 extern struct glx_config
*
127 glx_config_create_list(unsigned count
);
129 glx_config_destroy_list(struct glx_config
*configs
);
130 extern struct glx_config
*
131 glx_config_find_visual(struct glx_config
*configs
, int vid
);
132 extern struct glx_config
*
133 glx_config_find_fbconfig(struct glx_config
*configs
, int fbid
);
135 #endif /* GLCONTEXTMODES_H */