Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

envvars.html 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <HTML>
  2. <TITLE>Environment Variables</TITLE>
  3. <link rel="stylesheet" type="text/css" href="mesa.css"></head>
  4. <BODY>
  5. <H1>Environment Variables</H1>
  6. <p>
  7. Mesa supports the following environment variables:
  8. </p>
  9. <ul>
  10. <li>MESA_NO_ASM - if set, disables all assembly language optimizations
  11. <li>MESA_NO_MMX - if set, disables Intel MMX optimizations
  12. <li>MESA_NO_3DNOW - if set, disables AMD 3DNow! optimizations
  13. <li>MESA_NO_SSE - if set, disables Intel SSE optimizations
  14. <li>MESA_DEBUG - if set, error messages are printed to stderr.
  15. If the value of MESA_DEBUG is "FP" floating point arithmetic errors will
  16. generate exceptions.
  17. <li>MESA_NO_DITHER - if set, disables dithering, overriding glEnable(GL_DITHER)
  18. <li>MESA_TEX_PROG - if set, implement conventional texture env modes with
  19. fragment programs (intended for developers only)
  20. <li>MESA_TNL_PROG - if set, implement conventional vertex transformation
  21. operations with vertex programs (intended for developers only).
  22. Setting this variable automatically sets the MESA_TEX_PROG variable as well.
  23. </ul>
  24. <p>
  25. The following are only applicable to the Xlib software driver.
  26. See <A HREF="README.X11">README.X11</A> for details.
  27. </p>
  28. <ul>
  29. <li>MESA_RGB_VISUAL - specifies the X visual and depth for RGB mode
  30. <li>MESA_CI_VISUAL - specifies the X visual and depth for CI mode
  31. <li>MESA_BACK_BUFFER - specifies how to implement the back color buffer,
  32. either "pixmap" or "ximage"
  33. <li>MESA_GAMMA - gamma correction coefficients for red, green, blue channels
  34. <li>MESA_XSYNC - enable synchronous X behavior (for debugging only)
  35. <li>MESA_GLX_FORCE_CI - if set, force GLX to treat 8bpp visuals as CI visuals
  36. <li>MESA_GLX_FX - set to either "fullscreen" for full-screen rendering,
  37. "window" to render into a window, or "disable" to disable the Glide driver.
  38. <li>MESA_GLX_FORCE_ALPHA - if set, forces RGB windows to have an alpha channel.
  39. <li>MESA_GLX_DEPTH_BITS - specifies default number of bits for depth buffer.
  40. <li>MESA_GLX_ALPHA_BITS - specifies default number of bits for alpha channel.
  41. </ul>
  42. </BODY>
  43. </HTML>