Created
March 27, 2013 10:23
-
-
Save xranby/5253221 to your computer and use it in GitHub Desktop.
ac100 GLX xorg.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the minimal configuration necessary to use the Tegra driver. | |
# Please refer to the xorg.conf man page for more configuration | |
# options provided by the X server, including display-related options | |
# provided by RandR 1.2 and higher. | |
# Disable extensions not useful on Tegra. | |
Section "Module" | |
Disable "dri" | |
Disable "dri2" | |
# Disable "glx" | |
SubSection "extmod" | |
Option "omit xfree86-dga" | |
EndSubSection | |
EndSection | |
Section "Device" | |
Identifier "Tegra" | |
Driver "tegra" | |
# VirtualDesktop indicates which virtual desktops should be used by X. | |
# X will use the specified virtual desktop *and* the next one. In | |
# order for an external app to share a display with the X server, it | |
# needs to use the same virtual desktop. Valid values are integers 0 | |
# (default) or 1. | |
# Option "VirtualDesktop" "1" | |
# OverlayDepth is a 32-bit integer which is used to control overlay | |
# stacking order. The overlay with the lowest depth is in front of | |
# all others. This value has meaning only when multiple overlays are | |
# present on a display. | |
# Option "OverlayDepth" "255" | |
# OverlayCombineMode determines how the X overlay is combined with the | |
# overlay behind it during scanout. Available modes are: Opaque | |
# (default), SourceAlphaBlend, and PremultSourceAlphaBlend. This | |
# value has meaning only when an external process has created a | |
# display which is behind the X server. | |
# Option "OverlayCombineMode" "PremultSourceAlphaBlend" | |
# ARGBHWCursor controls whether the X driver uses an overlay to | |
# display 32-bit "true-color" cursors, or whether such cursors are | |
# emulated in software. Valid values are "true" to enable hardware | |
# cursors, and "false" (default) to disable them. | |
# Option "ARGBHWCursor" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment