Guest User

Untitled

a guest
Oct 12th, 2011
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. # This is the minimal configuration necessary to use the Tegra driver.
  2. # Please refer to the xorg.conf man page for more configuration
  3. # options provided by the X server, including display-related options
  4. # provided by RandR 1.2 and higher.
  5.  
  6. # Disable extensions not useful on Tegra.
  7. Section "Module"
  8. Disable "dri"
  9. Disable "dri2"
  10. Disable "glx"
  11. SubSection "extmod"
  12. Option "omit xfree86-dga"
  13. EndSubSection
  14. EndSection
  15.  
  16. Section "Device"
  17. Identifier "Tegra"
  18. Driver "tegra"
  19.  
  20. # VirtualDesktop indicates which virtual desktops should be used by X.
  21. # X will use the specified virtual desktop *and* the next one. In
  22. # order for an external app to share a display with the X server, it
  23. # needs to use the same virtual desktop. Valid values are integers 0
  24. # (default) or 1.
  25.  
  26. # Option "VirtualDesktop" "1"
  27.  
  28. # OverlayDepth is a 32-bit integer which is used to control overlay
  29. # stacking order. The overlay with the lowest depth is in front of
  30. # all others. This value has meaning only when multiple overlays are
  31. # present on a display.
  32.  
  33. # Option "OverlayDepth" "255"
  34.  
  35. # OverlayCombineMode determines how the X overlay is combined with the
  36. # overlay behind it during scanout. Available modes are: Opaque
  37. # (default), SourceAlphaBlend, and PremultSourceAlphaBlend. This
  38. # value has meaning only when an external process has created a
  39. # display which is behind the X server.
  40.  
  41. # Option "OverlayCombineMode" "PremultSourceAlphaBlend"
  42.  
  43. # ARGBHWCursor controls whether the X driver uses an overlay to
  44. # display 32-bit "true-color" cursors, or whether such cursors are
  45. # emulated in software. Valid values are "true" to enable hardware
  46. # cursors, and "false" (default) to disable them.
  47.  
  48. # Option "ARGBHWCursor"
  49. EndSection
  50.  
  51.  
Advertisement
Add Comment
Please, Sign In to add comment