Guest User

Untitled

a guest
Feb 9th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 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 "Screen"
  17. Identifier "<myscreen>"
  18. Device "Tegra"
  19. DefaultDepth 16
  20. EndSection
  21.  
  22. Section "Device"
  23. Identifier "Tegra"
  24. Driver "tegra"
  25.  
  26. # VirtualDesktop indicates which virtual desktops should be used by X.
  27. # X will use the specified virtual desktop *and* the next one. In
  28. # order for an external app to share a display with the X server, it
  29. # needs to use the same virtual desktop. Valid values are integers 0
  30. # (default) or 1.
  31.  
  32. # Option "VirtualDesktop" "1"
  33.  
  34. # OverlayDepth is a 32-bit integer which is used to control overlay
  35. # stacking order. The overlay with the lowest depth is in front of
  36. # all others. This value has meaning only when multiple overlays are
  37. # present on a display.
  38.  
  39. # Option "OverlayDepth" "255"
  40.  
  41. # OverlayCombineMode determines how the X overlay is combined with the
  42. # overlay behind it during scanout. Available modes are: Opaque
  43. # (default), SourceAlphaBlend, and PremultSourceAlphaBlend. This
  44. # value has meaning only when an external process has created a
  45. # display which is behind the X server.
  46.  
  47. # Option "OverlayCombineMode" "PremultSourceAlphaBlend"
  48.  
  49. # ARGBHWCursor controls whether the X driver uses an overlay to
  50. # display 32-bit "true-color" cursors, or whether such cursors are
  51. # emulated in software. Valid values are "true" to enable hardware
  52. # cursors, and "false" (default) to disable them.
  53.  
  54. # Option "ARGBHWCursor"
  55. EndSection
Advertisement
Add Comment
Please, Sign In to add comment