diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-03-09 08:27:02 +0000 |
---|---|---|
committer | Owain G. Ainsworth <oga@openbsd.org> | 2011-05-29 23:29:07 +0100 |
commit | 90829643d08dd1bef06bb9c27d8a8d8abaf935a1 (patch) | |
tree | 7777a3a41c244acca7ab3ba9810d2360b278c50d /man | |
parent | 15f093148847f47b67c9be72c1c86173d4df5302 (diff) |
Give each user of tiling separate xorg.conf options
So that you can indeed allocate a linear framebuffer if you so desire
without breaking mesa.
Adds:
Section "Driver"
Option "LinearFramebuffer" "False|True" # default false
EndSection
to xorg.conf
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
(cherry picked from commit 049ce4397ddf7fd088ce364cbb53cacf5133176f)
Conflicts:
man/intel.man
src/intel_driver.c
src/intel_driver.h
Diffstat (limited to 'man')
-rw-r--r-- | man/intel.man | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/man/intel.man b/man/intel.man index e11ced17..4923c89b 100644 --- a/man/intel.man +++ b/man/intel.man @@ -243,6 +243,18 @@ allows the driver to automatically figure out the correct fixed panel timings. See further in the section about LVDS fixed timing for more information. .TP +.BI "Option \*qTiling\*q \*q" boolean \*q +This option controls whether memory buffers for Pixmaps are allocated in tiled mode. In +most cases (especially for complex rendering), tiling dramatically improves +performance. +.BI "Option \*qLinearFramebuffer\*q \*q" boolean \*q +This option controls whether the memory for the scanout (also known as the +front or frame buffer) is allocated in linear memory. A tiled framebuffer is +required for power conservation features, but for certain system configurations +you may wish to override this and force a linear layout. +.IP +Default: disabled +.TP .BI "Option \*qXvMC\*q \*q" boolean \*q Enable XvMC driver. Current support MPEG2 MC on 915/945 and G33 series. User should provide absolute path to libIntelXvMC.so in XvMCConfig file. |