1 tsi 1.8 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/atioption.h,v 1.7 2001/05/04 19:05:32 dawes Exp $ */
|
2 dawes 1.1 /*
|
3 tsi 1.5 * Copyright 1999 through 2001 by Marc Aurele La France (TSI @ UQV), tsi@xfree86.org
|
4 dawes 1.1 *
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting documentation, and
9 * that the name of Marc Aurele La France not be used in advertising or
10 * publicity pertaining to distribution of the software without specific,
11 * written prior permission. Marc Aurele La France makes no representations
12 * about the suitability of this software for any purpose. It is provided
13 * "as-is" without express or implied warranty.
14 *
15 * MARC AURELE LA FRANCE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
17 * EVENT SHALL MARC AURELE LA FRANCE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21 * PERFORMANCE OF THIS SOFTWARE.
22 */
23
24 #ifndef ___ATIOPTION_H___
25 dawes 1.1 #define ___ATIOPTION_H___ 1
26
27 #include "atiproto.h"
|
28 tsi 1.3
|
29 dawes 1.1 #include "xf86str.h"
30
|
31 tsi 1.4 /*
32 * Documented XF86Config options.
33 */
34 typedef enum
35 {
36 ATI_OPTION_ACCEL,
37 ATI_OPTION_CRT,
38 ATI_OPTION_CSYNC,
|
39 tsi 1.6 ATI_OPTION_HWCURSOR,
40
41 #ifndef AVOID_CPIO
42
|
43 tsi 1.4 ATI_OPTION_LINEAR,
|
44 tsi 1.6
45 #endif /* AVOID_CPIO */
46
|
47 tsi 1.4 ATI_OPTION_MMIO_CACHE,
48 ATI_OPTION_PROBE_CLOCKS,
49 ATI_OPTION_REFERENCE_CLOCK,
|
50 tsi 1.6 ATI_OPTION_SHADOW_FB,
51 ATI_OPTION_SWCURSOR
|
52 tsi 1.4 } ATIPublicOptionType;
53
|
54 dawes 1.7 extern const OptionInfoRec ATIPublicOptions[];
|
55 tsi 1.8 extern const unsigned long ATIPublicOptionSize;
|
56 tsi 1.4
|
57 dawes 1.7 extern const OptionInfoRec * ATIAvailableOptions FunctionPrototype((int, int));
|
58 dawes 1.1
59 #endif /* ___ATIOPTION_H___ */
|