summaryrefslogtreecommitdiff
path: root/src/intel_options.h
blob: 43635f1feb3feae8681f4e7f35621be6d39abb8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef INTEL_OPTIONS_H
#define INTEL_OPTIONS_H

#include <xorg-server.h>
#include <xf86.h>
#include <xf86Opt.h>

/*
 * Note: "ColorKey" is provided for compatibility with the i810 driver.
 * However, the correct option name is "VideoKey".  "ColorKey" usually
 * refers to the tranparency key for 8+24 overlays, not for video overlays.
 */

enum intel_options {
	OPTION_ACCEL_ENABLE,
	OPTION_ACCEL_METHOD,
	OPTION_BACKLIGHT,
	OPTION_EDID,
	OPTION_DRI,
	OPTION_PRESENT,
	OPTION_VIDEO_KEY,
	OPTION_COLOR_KEY,
	OPTION_TILING_2D,
	OPTION_TILING_FB,
	OPTION_ROTATION,
	OPTION_VSYNC,
	OPTION_PAGEFLIP,
	OPTION_SWAPBUFFERS_WAIT,
	OPTION_TRIPLE_BUFFER,
	OPTION_PREFER_OVERLAY,
	OPTION_HOTPLUG,
	OPTION_REPROBE,
#if defined(XvMCExtension) && defined(ENABLE_XVMC)
	OPTION_XVMC,
#define INTEL_XVMC 1
#endif
#ifdef USE_SNA
	OPTION_ZAPHOD,
	OPTION_VIRTUAL,
	OPTION_TEAR_FREE,
	OPTION_CRTC_PIXMAPS,
#endif
#ifdef USE_UXA
	OPTION_FALLBACKDEBUG,
	OPTION_DEBUG_FLUSH_BATCHES,
	OPTION_DEBUG_FLUSH_CACHES,
	OPTION_DEBUG_WAIT,
	OPTION_BUFFER_CACHE,
#endif
	NUM_OPTIONS,
};

extern const OptionInfoRec intel_options[];
OptionInfoPtr intel_options_get(ScrnInfoPtr scrn);
unsigned intel_option_cast_to_unsigned(OptionInfoPtr, int id, unsigned val);
Bool intel_option_cast_to_bool(OptionInfoPtr, int id, Bool val);

#endif /* INTEL_OPTIONS_H */