Added a Spanish translation by David Rubio Miguélezand a Dutch
[mesa.git] / src / mesa / drivers / dri / common / xmlpool / options.h
1 /***********************************************************************
2 *** THIS FILE IS GENERATED AUTOMATICALLY. DON'T EDIT! ***
3 ***********************************************************************/
4 /*
5 * XML DRI client-side driver configuration
6 * Copyright (C) 2003 Felix Kuehling
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * FELIX KUEHLING, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
24 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 */
27 /**
28 * \file t_options.h
29 * \brief Templates of common options
30 * \author Felix Kuehling
31 *
32 * This file defines macros for common options that can be used to
33 * construct driConfigOptions in the drivers. This file is only a
34 * template containing English descriptions for options wrapped in
35 * gettext(). xgettext can be used to extract translatable
36 * strings. These strings can then be translated by anyone familiar
37 * with GNU gettext. gen_xmlpool.py takes this template and fills in
38 * all the translations. The result (options.h) is included by
39 * xmlpool.h which in turn can be included by drivers.
40 *
41 * The macros used to describe otions in this file are defined in
42 * ../xmlpool.h.
43 */
44
45 /* This is needed for xgettext to extract translatable strings.
46 * gen_xmlpool.py will discard this line. */
47 /* #include <libintl.h>
48 * commented out by gen_xmlpool.py */
49
50 /*
51 * predefined option sections and options with multi-lingual descriptions
52 */
53
54 /** \brief Debugging options */
55 #define DRI_CONF_SECTION_DEBUG \
56 DRI_CONF_SECTION_BEGIN \
57 DRI_CONF_DESC(en,"Debugging") \
58 DRI_CONF_DESC(de,"Fehlersuche") \
59 DRI_CONF_DESC(es,"Depurando") \
60 DRI_CONF_DESC(nl,"Debuggen")
61
62 #define DRI_CONF_NO_RAST(def) \
63 DRI_CONF_OPT_BEGIN(no_rast,bool,def) \
64 DRI_CONF_DESC(en,"Disable 3D acceleration") \
65 DRI_CONF_DESC(de,"3D-Beschleunigung abschalten") \
66 DRI_CONF_DESC(es,"Desactivar aceleración 3D") \
67 DRI_CONF_DESC(nl,"3D versnelling uitschakelen") \
68 DRI_CONF_OPT_END
69
70 #define DRI_CONF_PERFORMANCE_BOXES(def) \
71 DRI_CONF_OPT_BEGIN(performance_boxes,bool,def) \
72 DRI_CONF_DESC(en,"Show performance boxes") \
73 DRI_CONF_DESC(de,"Zeige Performanceboxen") \
74 DRI_CONF_DESC(es,"Mostrar cajas de rendimiento") \
75 DRI_CONF_DESC(nl,"Laat prestatie boxjes zien") \
76 DRI_CONF_OPT_END
77
78
79 /** \brief Texture-related options */
80 #define DRI_CONF_SECTION_QUALITY \
81 DRI_CONF_SECTION_BEGIN \
82 DRI_CONF_DESC(en,"Image Quality") \
83 DRI_CONF_DESC(de,"Bildqualität") \
84 DRI_CONF_DESC(es,"Calidad de imagen") \
85 DRI_CONF_DESC(nl,"Beeldkwaliteit")
86
87 #define DRI_CONF_TEXTURE_DEPTH_FB 0
88 #define DRI_CONF_TEXTURE_DEPTH_32 1
89 #define DRI_CONF_TEXTURE_DEPTH_16 2
90 #define DRI_CONF_TEXTURE_DEPTH_FORCE_16 3
91 #define DRI_CONF_TEXTURE_DEPTH(def) \
92 DRI_CONF_OPT_BEGIN_V(texture_depth,enum,def,"0:3") \
93 DRI_CONF_DESC_BEGIN(en,"Texture color depth") \
94 DRI_CONF_ENUM(0,"Prefer frame buffer color depth") \
95 DRI_CONF_ENUM(1,"Prefer 32 bits per texel") \
96 DRI_CONF_ENUM(2,"Prefer 16 bits per texel") \
97 DRI_CONF_ENUM(3,"Force 16 bits per texel") \
98 DRI_CONF_DESC_END \
99 DRI_CONF_DESC_BEGIN(de,"Texturfarbtiefe") \
100 DRI_CONF_ENUM(0,"Bevorzuge Farbtiefe des Framebuffers") \
101 DRI_CONF_ENUM(1,"Bevorzuge 32 bits pro Texel") \
102 DRI_CONF_ENUM(2,"Bevorzuge 16 bits pro Texel") \
103 DRI_CONF_ENUM(3,"Erzwinge 16 bits pro Texel") \
104 DRI_CONF_DESC_END \
105 DRI_CONF_DESC_BEGIN(es,"Profundidad de color de textura") \
106 DRI_CONF_ENUM(0,"Preferir profundidad de color del ”framebuffer“") \
107 DRI_CONF_ENUM(1,"Preferir 32 bits por texel") \
108 DRI_CONF_ENUM(2,"Preferir 16 bits por texel") \
109 DRI_CONF_ENUM(3,"Forzar a 16 bits por texel") \
110 DRI_CONF_DESC_END \
111 DRI_CONF_DESC_BEGIN(nl,"Textuurkleurendiepte") \
112 DRI_CONF_ENUM(0,"Prefereer kaderbufferkleurdiepte") \
113 DRI_CONF_ENUM(1,"Prefereer 32 bits per texel") \
114 DRI_CONF_ENUM(2,"Prefereer 16 bits per texel") \
115 DRI_CONF_ENUM(3,"Dwing 16 bits per texel af") \
116 DRI_CONF_DESC_END \
117 DRI_CONF_OPT_END
118
119 #define DRI_CONF_DEF_MAX_ANISOTROPY(def,range) \
120 DRI_CONF_OPT_BEGIN_V(def_max_anisotropy,float,def,range) \
121 DRI_CONF_DESC(en,"Initial maximum value for anisotropic texture filtering") \
122 DRI_CONF_DESC(de,"Initialer Maximalwert für anisotropische Texturfilterung") \
123 DRI_CONF_DESC(es,"Valor máximo inicial para filtrado anisotrópico de textura") \
124 DRI_CONF_DESC(nl,"Initïele maximum waarde voor anisotrophische textuur filtering") \
125 DRI_CONF_OPT_END
126
127 #define DRI_CONF_NO_NEG_LOD_BIAS(def) \
128 DRI_CONF_OPT_BEGIN(no_neg_lod_bias,bool,def) \
129 DRI_CONF_DESC(en,"Forbid negative texture LOD bias") \
130 DRI_CONF_DESC(de,"Verbiete negative Textur-Detailgradverschiebung") \
131 DRI_CONF_DESC(es,"Prohibir valores negativos de Nivel De Detalle (LOD) de texturas") \
132 DRI_CONF_DESC(nl,"Verbied negatief niveau detailonderscheid (LOD) van texturen") \
133 DRI_CONF_OPT_END
134
135 #define DRI_CONF_FORCE_S3TC_ENABLE(def) \
136 DRI_CONF_OPT_BEGIN(force_s3tc_enable,bool,def) \
137 DRI_CONF_DESC(en,"Enable S3TC texture compression even if software support is not available") \
138 DRI_CONF_DESC(de,"Aktiviere S3TC Texturkomprimierung auch wenn die nötige Softwareunterstützung fehlt") \
139 DRI_CONF_DESC(es,"Activar la compresión de texturas S3TC incluso si el soporte por software no está disponible") \
140 DRI_CONF_DESC(nl,"Schakel S3TC textuurcompressie in, zelfs als softwareondersteuning niet aanwezig is") \
141 DRI_CONF_OPT_END
142
143 #define DRI_CONF_COLOR_REDUCTION_ROUND 0
144 #define DRI_CONF_COLOR_REDUCTION_DITHER 1
145 #define DRI_CONF_COLOR_REDUCTION(def) \
146 DRI_CONF_OPT_BEGIN_V(color_reduction,enum,def,"0:1") \
147 DRI_CONF_DESC_BEGIN(en,"Initial color reduction method") \
148 DRI_CONF_ENUM(0,"Round colors") \
149 DRI_CONF_ENUM(1,"Dither colors") \
150 DRI_CONF_DESC_END \
151 DRI_CONF_DESC_BEGIN(de,"Initiale Farbreduktionsmethode") \
152 DRI_CONF_ENUM(0,"Farben runden") \
153 DRI_CONF_ENUM(1,"Farben rastern") \
154 DRI_CONF_DESC_END \
155 DRI_CONF_DESC_BEGIN(es,"Método inicial de reducción de color") \
156 DRI_CONF_ENUM(0,"Colores redondeados") \
157 DRI_CONF_ENUM(1,"Colores suavizados") \
158 DRI_CONF_DESC_END \
159 DRI_CONF_DESC_BEGIN(nl,"Initïele kleurreductie methode") \
160 DRI_CONF_ENUM(0,"Rond kleuren af") \
161 DRI_CONF_ENUM(1,"Rasteriseer kleuren") \
162 DRI_CONF_DESC_END \
163 DRI_CONF_OPT_END
164
165 #define DRI_CONF_ROUND_TRUNC 0
166 #define DRI_CONF_ROUND_ROUND 1
167 #define DRI_CONF_ROUND_MODE(def) \
168 DRI_CONF_OPT_BEGIN_V(round_mode,enum,def,"0:1") \
169 DRI_CONF_DESC_BEGIN(en,"Color rounding method") \
170 DRI_CONF_ENUM(0,"Round color components downward") \
171 DRI_CONF_ENUM(1,"Round to nearest color") \
172 DRI_CONF_DESC_END \
173 DRI_CONF_DESC_BEGIN(de,"Farbrundungsmethode") \
174 DRI_CONF_ENUM(0,"Farbkomponenten abrunden") \
175 DRI_CONF_ENUM(1,"Zur ähnlichsten Farbe runden") \
176 DRI_CONF_DESC_END \
177 DRI_CONF_DESC_BEGIN(es,"Método de redondeo de colores") \
178 DRI_CONF_ENUM(0,"Redondear hacia abajo los componentes de color") \
179 DRI_CONF_ENUM(1,"Redondear al color más cercano") \
180 DRI_CONF_DESC_END \
181 DRI_CONF_DESC_BEGIN(nl,"Kleurafrondingmethode") \
182 DRI_CONF_ENUM(0,"Rond kleurencomponenten af naar beneden") \
183 DRI_CONF_ENUM(1,"Rond af naar dichtsbijzijnde kleur") \
184 DRI_CONF_DESC_END \
185 DRI_CONF_OPT_END
186
187 #define DRI_CONF_DITHER_XERRORDIFF 0
188 #define DRI_CONF_DITHER_XERRORDIFFRESET 1
189 #define DRI_CONF_DITHER_ORDERED 2
190 #define DRI_CONF_DITHER_MODE(def) \
191 DRI_CONF_OPT_BEGIN_V(dither_mode,enum,def,"0:2") \
192 DRI_CONF_DESC_BEGIN(en,"Color dithering method") \
193 DRI_CONF_ENUM(0,"Horizontal error diffusion") \
194 DRI_CONF_ENUM(1,"Horizontal error diffusion, reset error at line start") \
195 DRI_CONF_ENUM(2,"Ordered 2D color dithering") \
196 DRI_CONF_DESC_END \
197 DRI_CONF_DESC_BEGIN(de,"Farbrasterungsmethode") \
198 DRI_CONF_ENUM(0,"Horizontale Fehlerstreuung") \
199 DRI_CONF_ENUM(1,"Horizontale Fehlerstreuung, Fehler am Zeilenanfang zurücksetzen") \
200 DRI_CONF_ENUM(2,"Geordnete 2D Farbrasterung") \
201 DRI_CONF_DESC_END \
202 DRI_CONF_DESC_BEGIN(es,"Método de suavizado de color") \
203 DRI_CONF_ENUM(0,"Difusión de error horizontal") \
204 DRI_CONF_ENUM(1,"Difusión de error horizontal, reiniciar error al comienzo de línea") \
205 DRI_CONF_ENUM(2,"Suavizado de color 2D ordenado") \
206 DRI_CONF_DESC_END \
207 DRI_CONF_DESC_BEGIN(nl,"Kleurrasteriseringsmethode") \
208 DRI_CONF_ENUM(0,"Horizontale foutdiffusie") \
209 DRI_CONF_ENUM(1,"Horizontale foutdiffusie, zet fout bij lijnbegin terug") \
210 DRI_CONF_ENUM(2,"Geordende 2D kleurrasterisering") \
211 DRI_CONF_DESC_END \
212 DRI_CONF_OPT_END
213
214 #define DRI_CONF_FLOAT_DEPTH(def) \
215 DRI_CONF_OPT_BEGIN(float_depth,bool,def) \
216 DRI_CONF_DESC(en,"Floating point depth buffer") \
217 DRI_CONF_DESC(de,"Fließkomma z-Puffer") \
218 DRI_CONF_DESC(es,"Búfer de profundidad en coma flotante") \
219 DRI_CONF_DESC(nl,"Dieptebuffer als commagetal") \
220 DRI_CONF_OPT_END
221
222 /** \brief Performance-related options */
223 #define DRI_CONF_SECTION_PERFORMANCE \
224 DRI_CONF_SECTION_BEGIN \
225 DRI_CONF_DESC(en,"Performance") \
226 DRI_CONF_DESC(de,"Leistung") \
227 DRI_CONF_DESC(es,"Rendimiento") \
228 DRI_CONF_DESC(nl,"Prestatie")
229
230 #define DRI_CONF_TCL_SW 0
231 #define DRI_CONF_TCL_PIPELINED 1
232 #define DRI_CONF_TCL_VTXFMT 2
233 #define DRI_CONF_TCL_CODEGEN 3
234 #define DRI_CONF_TCL_MODE(def) \
235 DRI_CONF_OPT_BEGIN_V(tcl_mode,enum,def,"0:3") \
236 DRI_CONF_DESC_BEGIN(en,"TCL mode (Transformation, Clipping, Lighting)") \
237 DRI_CONF_ENUM(0,"Use software TCL pipeline") \
238 DRI_CONF_ENUM(1,"Use hardware TCL as first TCL pipeline stage") \
239 DRI_CONF_ENUM(2,"Bypass the TCL pipeline") \
240 DRI_CONF_ENUM(3,"Bypass the TCL pipeline with state-based machine code generated on-the-fly") \
241 DRI_CONF_DESC_END \
242 DRI_CONF_DESC_BEGIN(de,"TCL-Modus (Transformation, Clipping, Licht)") \
243 DRI_CONF_ENUM(0,"Benutze die Software-TCL-Pipeline") \
244 DRI_CONF_ENUM(1,"Benutze Hardware TCL als erste Stufe der TCL-Pipeline") \
245 DRI_CONF_ENUM(2,"Umgehe die TCL-Pipeline") \
246 DRI_CONF_ENUM(3,"Umgehe die TCL-Pipeline mit zur Laufzeit erzeugtem, zustandsbasiertem Maschinencode") \
247 DRI_CONF_DESC_END \
248 DRI_CONF_DESC_BEGIN(es,"Modo TCL (Transformación, Recorte, Iluminación)") \
249 DRI_CONF_ENUM(0,"Usar tubería TCL por software") \
250 DRI_CONF_ENUM(1,"Usar TCL por hardware en la primera fase de la tubería TCL") \
251 DRI_CONF_ENUM(2,"Pasar por alto la tubería TCL") \
252 DRI_CONF_ENUM(3,"Pasar por alto la tubería TCL con código máquina basado en estados generado al vuelo") \
253 DRI_CONF_DESC_END \
254 DRI_CONF_DESC_BEGIN(nl,"TCL-modus (Transformatie, Clipping, Licht)") \
255 DRI_CONF_ENUM(0,"Gebruik software TCL pijpleiding") \
256 DRI_CONF_ENUM(1,"Gebruik hardware TCL as eerste TCL pijpleiding trap") \
257 DRI_CONF_ENUM(2,"Omzeil de TCL pijpleiding") \
258 DRI_CONF_ENUM(3,"Omzeil de TCL pijpleiding met staatgebaseerde machinecode die tijdens executie gegenereerd wordt") \
259 DRI_CONF_DESC_END \
260 DRI_CONF_OPT_END
261
262 #define DRI_CONF_FTHROTTLE_BUSY 0
263 #define DRI_CONF_FTHROTTLE_USLEEPS 1
264 #define DRI_CONF_FTHROTTLE_IRQS 2
265 #define DRI_CONF_FTHROTTLE_MODE(def) \
266 DRI_CONF_OPT_BEGIN_V(fthrottle_mode,enum,def,"0:2") \
267 DRI_CONF_DESC_BEGIN(en,"Method to limit rendering latency") \
268 DRI_CONF_ENUM(0,"Busy waiting for the graphics hardware") \
269 DRI_CONF_ENUM(1,"Sleep for brief intervals while waiting for the graphics hardware") \
270 DRI_CONF_ENUM(2,"Let the graphics hardware emit a software interrupt and sleep") \
271 DRI_CONF_DESC_END \
272 DRI_CONF_DESC_BEGIN(de,"Methode zur Begrenzung der Bildverzögerung") \
273 DRI_CONF_ENUM(0,"Aktives Warten auf die Grafikhardware") \
274 DRI_CONF_ENUM(1,"Kurze Schlafintervalle beim Warten auf die Grafikhardware") \
275 DRI_CONF_ENUM(2,"Die Grafikhardware eine Softwareunterbrechnung erzeugen lassen und schlafen") \
276 DRI_CONF_DESC_END \
277 DRI_CONF_DESC_BEGIN(es,"Método para limitar la latencia de rénder") \
278 DRI_CONF_ENUM(0,"Esperar activamente al hardware gráfico") \
279 DRI_CONF_ENUM(1,"Dormir en intervalos cortos mientras se espera al hardware gráfico") \
280 DRI_CONF_ENUM(2,"Permitir que el hardware gráfico emita una interrupción de software y duerma") \
281 DRI_CONF_DESC_END \
282 DRI_CONF_DESC_BEGIN(nl,"Methode om beeldopbouwvertraging te onderdrukken") \
283 DRI_CONF_ENUM(0,"Actief wachten voor de grafische hardware") \
284 DRI_CONF_ENUM(1,"Slaap voor korte intervallen tijdens het wachten op de grafische hardware") \
285 DRI_CONF_ENUM(2,"Laat de grafische hardware een software onderbreking uitzenden en in slaap vallen") \
286 DRI_CONF_DESC_END \
287 DRI_CONF_OPT_END
288
289 #define DRI_CONF_VBLANK_NEVER 0
290 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
291 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
292 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
293 #define DRI_CONF_VBLANK_MODE(def) \
294 DRI_CONF_OPT_BEGIN_V(vblank_mode,enum,def,"0:3") \
295 DRI_CONF_DESC_BEGIN(en,"Synchronization with vertical refresh (swap intervals)") \
296 DRI_CONF_ENUM(0,"Never synchronize with vertical refresh, ignore application's choice") \
297 DRI_CONF_ENUM(1,"Initial swap interval 0, obey application's choice") \
298 DRI_CONF_ENUM(2,"Initial swap interval 1, obey application's choice") \
299 DRI_CONF_ENUM(3,"Always synchronize with vertical refresh, application chooses the minimum swap interval") \
300 DRI_CONF_DESC_END \
301 DRI_CONF_DESC_BEGIN(de,"Synchronisation mit der vertikalen Bildwiederholung") \
302 DRI_CONF_ENUM(0,"Niemals mit der Bildwiederholung synchronisieren, Anweisungen der Anwendung ignorieren") \
303 DRI_CONF_ENUM(1,"Initiales Bildinterval 0, Anweisungen der Anwendung gehorchen") \
304 DRI_CONF_ENUM(2,"Initiales Bildinterval 1, Anweisungen der Anwendung gehorchen") \
305 DRI_CONF_ENUM(3,"Immer mit der Bildwiederholung synchronisieren, Anwendung wählt das minmale Bildinterval") \
306 DRI_CONF_DESC_END \
307 DRI_CONF_DESC_BEGIN(es,"Sincronización con el refresco vertical (intervalos de intercambio)") \
308 DRI_CONF_ENUM(0,"No sincronizar nunca con el refresco vertical, ignorar la elección de la aplicación") \
309 DRI_CONF_ENUM(1,"Intervalo de intercambio inicial 0, obedecer la elección de la aplicación") \
310 DRI_CONF_ENUM(2,"Intervalo de intercambio inicial 1, obedecer la elección de la aplicación") \
311 DRI_CONF_ENUM(3,"Sincronizar siempre con el refresco vertical, la aplicación elige el intervalo de intercambio mínimo") \
312 DRI_CONF_DESC_END \
313 DRI_CONF_DESC_BEGIN(nl,"Synchronisatie met verticale verversing (interval omwisselen)") \
314 DRI_CONF_ENUM(0,"Nooit synchroniseren met verticale verversing, negeer de keuze van de applicatie") \
315 DRI_CONF_ENUM(1,"Initïeel omwisselingsinterval 0, honoreer de keuze van de applicatie") \
316 DRI_CONF_ENUM(2,"Initïeel omwisselingsinterval 1, honoreer de keuze van de applicatie") \
317 DRI_CONF_ENUM(3,"Synchroniseer altijd met verticale verversing, de applicatie kiest het minimum omwisselingsinterval") \
318 DRI_CONF_DESC_END \
319 DRI_CONF_OPT_END
320
321 #define DRI_CONF_HYPERZ_DISABLED 0
322 #define DRI_CONF_HYPERZ_ENABLED 1
323 #define DRI_CONF_HYPERZ(def) \
324 DRI_CONF_OPT_BEGIN(hyperz,bool,def) \
325 DRI_CONF_DESC(en,"Use HyperZ to boost performance") \
326 DRI_CONF_DESC(de,"HyperZ zur Leistungssteigerung verwenden") \
327 DRI_CONF_DESC(es,"Usar HyperZ para potenciar rendimiento") \
328 DRI_CONF_DESC(nl,"Gebruik HyperZ om de prestaties te verbeteren") \
329 DRI_CONF_OPT_END
330
331 #define DRI_CONF_MAX_TEXTURE_UNITS(def,min,max) \
332 DRI_CONF_OPT_BEGIN_V(texture_units,int,def, # min ":" # max ) \
333 DRI_CONF_DESC(en,"Number of texture units used") \
334 DRI_CONF_DESC(de,"Anzahl der benutzten Textureinheiten") \
335 DRI_CONF_DESC(es,"Número de unidades de textura usadas") \
336 DRI_CONF_DESC(nl,"Aantal textuureenheden in gebruik") \
337 DRI_CONF_OPT_END
338
339 #define DRI_CONF_TEXTURE_LEVEL_HACK(def) \
340 DRI_CONF_OPT_BEGIN(texture_level_hack,bool,def) \
341 DRI_CONF_DESC(en,"Enable hack to allow larger textures with texture compression on radeon/r200") \
342 DRI_CONF_DESC(de,"Hack aktivieren, der mit Texturkompression auf radeon/r200 größere Texturen erlaubt") \
343 DRI_CONF_DESC(es,"Activar ”hack“ para permitir texturas más grandes con compresión de textura activada en la Radeon/r200") \
344 DRI_CONF_DESC(nl,"Schakel hack in om met textuurcompressie grotere texturen toe te staan op een radeon/r200") \
345 DRI_CONF_OPT_END
346
347 #define DRI_CONF_TEXTURE_BLEND_QUALITY(def,range) \
348 DRI_CONF_OPT_BEGIN_V(texture_blend_quality,float,def,range) \
349 DRI_CONF_DESC(en,"Texture filtering quality vs. speed, AKA “brilinear” texture filtering") \
350 DRI_CONF_DESC(de,"Texturfilterqualität versus -geschwindigkeit, auch bekannt als „brilineare“ Texturfilterung") \
351 DRI_CONF_DESC(es,"Calidad de filtrado de textura vs. velocidad, alias filtrado ”brilinear“ de textura") \
352 DRI_CONF_DESC(nl,"Textuurfilterkwaliteit versus -snelheid, ookwel bekend als “brilineaire” textuurfiltering") \
353 DRI_CONF_OPT_END
354
355 #define DRI_CONF_TEXTURE_HEAPS_ALL 0
356 #define DRI_CONF_TEXTURE_HEAPS_CARD 1
357 #define DRI_CONF_TEXTURE_HEAPS_GART 2
358 #define DRI_CONF_TEXTURE_HEAPS(def) \
359 DRI_CONF_OPT_BEGIN_V(texture_heaps,enum,def,"0:2") \
360 DRI_CONF_DESC_BEGIN(en,"Used types of texture memory") \
361 DRI_CONF_ENUM(0,"All available memory") \
362 DRI_CONF_ENUM(1,"Only card memory (if available)") \
363 DRI_CONF_ENUM(2,"Only GART (AGP/PCIE) memory (if available)") \
364 DRI_CONF_DESC_END \
365 DRI_CONF_DESC_BEGIN(de,"Benutzte Arten von Texturspeicher") \
366 DRI_CONF_ENUM(0,"Aller verfügbarer Speicher") \
367 DRI_CONF_ENUM(1,"Nur Grafikspeicher (falls verfügbar)") \
368 DRI_CONF_ENUM(2,"Nur GART-Speicher (AGP/PCIE) (falls verfügbar)") \
369 DRI_CONF_DESC_END \
370 DRI_CONF_DESC_BEGIN(es,"Tipos de memoria de textura usados") \
371 DRI_CONF_ENUM(0,"Toda la memoria disponible") \
372 DRI_CONF_ENUM(1,"Sólo la memoria de la tarjeta (si disponible)") \
373 DRI_CONF_ENUM(2,"Sólo memoria GART (AGP/PCIE) (si disponible)") \
374 DRI_CONF_DESC_END \
375 DRI_CONF_DESC_BEGIN(nl,"Gebruikte soorten textuurgeheugen") \
376 DRI_CONF_ENUM(0,"Al het beschikbaar geheugen") \
377 DRI_CONF_ENUM(1,"Alleen geheugen op de kaart (als het aanwezig is)") \
378 DRI_CONF_ENUM(2,"Alleen GART (AGP/PCIE) geheugen (als het aanwezig is)") \
379 DRI_CONF_DESC_END \
380 DRI_CONF_OPT_END
381
382 /* Options for features that are not done in hardware by the driver (like GL_ARB_vertex_program
383 On cards where there is no documentation (r200) or on rasterization-only hardware). */
384 #define DRI_CONF_SECTION_SOFTWARE \
385 DRI_CONF_SECTION_BEGIN \
386 DRI_CONF_DESC(en,"Features that are not hardware-accelerated") \
387 DRI_CONF_DESC(de,"Funktionalität, die nicht hardwarebeschleunigt ist") \
388 DRI_CONF_DESC(es,"Características no aceleradas por hardware") \
389 DRI_CONF_DESC(nl,"Eigenschappen die niet hardwareversneld zijn")
390
391 #define DRI_CONF_ARB_VERTEX_PROGRAM(def) \
392 DRI_CONF_OPT_BEGIN(arb_vertex_program,bool,def) \
393 DRI_CONF_DESC(en,"Enable extension GL_ARB_vertex_program") \
394 DRI_CONF_DESC(de,"Erweiterung GL_ARB_vertex_program aktivieren") \
395 DRI_CONF_DESC(es,"Activar la extensión GL_ARB_vertex_program") \
396 DRI_CONF_DESC(nl,"Zet uitbreiding GL_ARB_vertex_program aan") \
397 DRI_CONF_OPT_END
398
399 #define DRI_CONF_NV_VERTEX_PROGRAM(def) \
400 DRI_CONF_OPT_BEGIN(nv_vertex_program,bool,def) \
401 DRI_CONF_DESC(en,"Enable extension GL_NV_vertex_program") \
402 DRI_CONF_DESC(de,"Erweiterung GL_NV_vertex_program aktivieren") \
403 DRI_CONF_DESC(es,"Activar extensión GL_NV_vertex_program") \
404 DRI_CONF_DESC(nl,"Zet uitbreiding GL_NV_vertex_program aan") \
405 DRI_CONF_OPT_END