Difference between revisions of "I915"
From QWiki
*>Raket (New page: i915 is a kernel module: a xorg.conf could look something like this: <nowiki> Section "Device" ### Available Driver options are:- ### Values: <i>: integer, <f>: float, <b...) |
*>Raket |
||
Line 3: | Line 3: | ||
a xorg.conf could look something like this: | a xorg.conf could look something like this: | ||
− | < | + | <code> |
Section "Device" | Section "Device" | ||
### Available Driver options are:- | ### Available Driver options are:- | ||
Line 32: | Line 32: | ||
BusID "PCI:0:2:0" | BusID "PCI:0:2:0" | ||
EndSection | EndSection | ||
− | </ | + | </code> |
More info can be found in intel(9) | More info can be found in intel(9) |
Revision as of 10:05, 30 August 2012
i915 is a kernel module:
a xorg.conf could look something like this:
Section "Device"
### Available Driver options are:-
### Values: : integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
### <percent>: "<f>%"
### [arg]: arg optional
Option "DRI" "true" # [<bool>]
Option "ColorKey" #
Option "VideoKey" #
Option "FallbackDebug" "false" # [<bool>]
Option "Tiling" "true" # [<bool>]
Option "LinearFramebuffer" "true" # [<bool>]
Option "Shadow" "false" # [<bool>]
Option "SwapbuffersWait" "false" # [<bool>]
Option "TripleBuffer" "false" # [<bool>]
Option "XvMC" # [<bool>]
Option "XvPreferOverlay" # [<bool>]
Option "DebugFlushBatches" "false" # [<bool>]
Option "DebugFlushCaches" "false" # [<bool>]
Option "DebugWait" "false" # [<bool>]
- Option "HotPlug" "true" # [<bool>]
Option "RelaxedFencing" "false" # [<bool>]
Option "BufferCache" "true" # [<bool>]
Option "Throttle" "false"
Identifier "Card0"
Driver "intel"
BusID "PCI:0:2:0"
EndSection
More info can be found in intel(9)