blob: bdfe9991a6c86e630e927de20092221b309bf7b7 [file] [log] [blame]
Andreas Bollecd5c7c2012-06-12 09:05:03 +02001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html lang="en">
3<head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Environment Variables</title>
6 <link rel="stylesheet" type="text/css" href="mesa.css">
7</head>
8<body>
Brian Paul0b27ace2003-03-08 17:38:57 +00009
Andreas Bollb5da52a2012-09-18 18:57:02 +020010<div class="header">
11 <h1>The Mesa 3D Graphics Library</h1>
12</div>
13
14<iframe src="contents.html"></iframe>
15<div class="content">
16
Andreas Bollecd5c7c2012-06-12 09:05:03 +020017<h1>Environment Variables</h1>
Brian Paul0b27ace2003-03-08 17:38:57 +000018
19<p>
Brian Paul1bf99542011-02-17 07:29:20 -070020Normally, no environment variables need to be set. Most of the environment
21variables used by Mesa/Gallium are for debugging purposes, but they can
22sometimes be useful for debugging end-user issues.
Brian Paul0b27ace2003-03-08 17:38:57 +000023</p>
Brian Paul1bf99542011-02-17 07:29:20 -070024
25
Andreas Boll210a27d2012-06-12 09:05:36 +020026<h2>LibGL environment variables</h2>
Brian Paul1bf99542011-02-17 07:29:20 -070027
28<ul>
29<li>LIBGL_DEBUG - If defined debug information will be printed to stderr.
30 If set to 'verbose' additional information will be printed.
31<li>LIBGL_DRIVERS_PATH - colon-separated list of paths to search for DRI drivers
32<li>LIBGL_ALWAYS_INDIRECT - forces an indirect rendering context/connection.
33<li>LIBGL_ALWAYS_SOFTWARE - if set, always use software rendering
34<li>LIBGL_NO_DRAWARRAYS - if set do not use DrawArrays GLX protocol (for debugging)
Marek Olšákdd6152b2013-03-26 03:19:10 +010035<li>LIBGL_SHOW_FPS - print framerate to stdout based on the number of glXSwapBuffers
36 calls per second.
Martin Perese4b29732015-05-07 16:57:48 +030037<li>LIBGL_DRI3_DISABLE - disable DRI3 if set (the value does not matter)
Brian Paul1bf99542011-02-17 07:29:20 -070038</ul>
39
40
41
Andreas Boll210a27d2012-06-12 09:05:36 +020042<h2>Core Mesa environment variables</h2>
Brian Paul1bf99542011-02-17 07:29:20 -070043
Brian Paul0b27ace2003-03-08 17:38:57 +000044<ul>
Brian Paulb07d6a82004-02-02 22:35:55 +000045<li>MESA_NO_ASM - if set, disables all assembly language optimizations
46<li>MESA_NO_MMX - if set, disables Intel MMX optimizations
47<li>MESA_NO_3DNOW - if set, disables AMD 3DNow! optimizations
48<li>MESA_NO_SSE - if set, disables Intel SSE optimizations
Brian Paul1bf99542011-02-17 07:29:20 -070049<li>MESA_DEBUG - if set, error messages are printed to stderr. For example,
50 if the application generates a GL_INVALID_ENUM error, a corresponding error
Nathan Kidd0691b372014-01-03 16:44:00 -070051 message indicating where the error occurred, and possibly why, will be
Brian Paul1bf99542011-02-17 07:29:20 -070052 printed to stderr.<br>
53 If the value of MESA_DEBUG is 'FP' floating point arithmetic errors will
54 generate exceptions.
Brian Paul9ccf5bf2012-06-25 11:43:03 -060055<li>MESA_LOG_FILE - specifies a file name for logging all errors, warnings,
56etc., rather than stderr
Brian Paul4d3ab192006-06-01 20:22:30 +000057<li>MESA_TEX_PROG - if set, implement conventional texture env modes with
58fragment programs (intended for developers only)
59<li>MESA_TNL_PROG - if set, implement conventional vertex transformation
60operations with vertex programs (intended for developers only).
61Setting this variable automatically sets the MESA_TEX_PROG variable as well.
Brian Paulcc26e272009-06-08 10:56:51 -060062<li>MESA_EXTENSION_OVERRIDE - can be used to enable/disable extensions.
63A value such as "GL_EXT_foo -GL_EXT_bar" will enable the GL_EXT_foo extension
64and disable the GL_EXT_bar extension.
Brian Paul82dd62f2011-03-24 11:39:21 -060065<li>MESA_EXTENSION_MAX_YEAR - The GL_EXTENSIONS string returned by Mesa is sorted
66by extension year.
67If this variable is set to year X, only extensions defined on or before year
68X will be reported.
69This is to work-around a bug in some games where the extension string is
70copied into a fixed-size buffer without truncating.
71If the extension string is too long, the buffer overrun can cause the game
72to crash.
73This is a work-around for that.
Chad Versace0527c112011-09-26 11:48:46 -070074<li>MESA_GL_VERSION_OVERRIDE - changes the value returned by
Jordan Justen00905db2012-09-01 01:38:08 -070075glGetString(GL_VERSION) and possibly the GL API type.
76<ul>
77<li> The format should be MAJOR.MINOR[FC]
78<li> FC is an optional suffix that indicates a forward compatible context.
79This is only valid for versions &gt;= 3.0.
80<li> GL versions &lt; 3.0 are set to a compatibility (non-Core) profile
81<li> GL versions = 3.0, see below
82<li> GL versions &gt; 3.0 are set to a Core profile
83<li> Examples: 2.1, 3.0, 3.0FC, 3.1, 3.1FC
84<ul>
85<li> 2.1 - select a compatibility (non-Core) profile with GL version 2.1
86<li> 3.0 - select a compatibility (non-Core) profile with GL version 3.0
87<li> 3.0FC - select a Core+Forward Compatible profile with GL version 3.0
88<li> 3.1 - select a Core profile with GL version 3.1
89<li> 3.1FC - select a Core+Forward Compatible profile with GL version 3.1
90</ul>
91<li> Mesa may not really implement all the features of the given version.
92(for developers only)
93</ul>
Chad Versacea1eff552011-09-27 13:53:11 -070094<li>MESA_GLSL_VERSION_OVERRIDE - changes the value returned by
95glGetString(GL_SHADING_LANGUAGE_VERSION). Valid values are integers, such as
96"130". Mesa will not really implement all the features of the given language version
97if it's higher than what's normally reported. (for developers only)
Brian Paul1bf99542011-02-17 07:29:20 -070098<li>MESA_GLSL - <a href="shading.html#envvars">shading language compiler options</a>
Brian Paulb07d6a82004-02-02 22:35:55 +000099</ul>
100
Brian Paul1bf99542011-02-17 07:29:20 -0700101
Andreas Boll210a27d2012-06-12 09:05:36 +0200102<h2>Mesa Xlib driver environment variables</h2>
Brian Paul1bf99542011-02-17 07:29:20 -0700103
Brian Paulb07d6a82004-02-02 22:35:55 +0000104<p>
Brian Paul1bf99542011-02-17 07:29:20 -0700105The following are only applicable to the Mesa Xlib software driver.
Andreas Boll210a27d2012-06-12 09:05:36 +0200106See the <a href="xlibdriver.html">Xlib software driver page</a> for details.
Brian Paulb07d6a82004-02-02 22:35:55 +0000107</p>
108<ul>
Brian Paul5e9d7312006-01-27 20:12:06 +0000109<li>MESA_RGB_VISUAL - specifies the X visual and depth for RGB mode
110<li>MESA_CI_VISUAL - specifies the X visual and depth for CI mode
111<li>MESA_BACK_BUFFER - specifies how to implement the back color buffer,
112 either "pixmap" or "ximage"
113<li>MESA_GAMMA - gamma correction coefficients for red, green, blue channels
114<li>MESA_XSYNC - enable synchronous X behavior (for debugging only)
115<li>MESA_GLX_FORCE_CI - if set, force GLX to treat 8bpp visuals as CI visuals
Brian Paul4f6b1ad2004-07-23 15:49:12 +0000116<li>MESA_GLX_FORCE_ALPHA - if set, forces RGB windows to have an alpha channel.
Brian Pauldfa5c2b2004-07-23 23:32:15 +0000117<li>MESA_GLX_DEPTH_BITS - specifies default number of bits for depth buffer.
Brian Paul8894a552005-11-05 03:12:06 +0000118<li>MESA_GLX_ALPHA_BITS - specifies default number of bits for alpha channel.
Brian Paul0b27ace2003-03-08 17:38:57 +0000119</ul>
120
121
Brian Paul1bf99542011-02-17 07:29:20 -0700122<h2>i945/i965 driver environment variables (non-Gallium)</h2>
123
Brian Paul1d8b3082010-01-26 09:12:32 -0700124<ul>
Chris Forbes90d18552013-11-24 18:12:49 +1300125<li>INTEL_NO_HW - if set to 1, prevents batches from being submitted to the hardware.
126 This is useful for debugging hangs, etc.</li>
127<li>INTEL_DEBUG - a comma-separated list of named flags, which do various things:
128<ul>
129 <li>tex - emit messages about textures.</li>
130 <li>state - emit messages about state flag tracking</li>
131 <li>blit - emit messages about blit operations</li>
132 <li>miptree - emit messages about miptrees</li>
133 <li>perf - emit messages about performance issues</li>
134 <li>perfmon - emit messages about AMD_performance_monitor</li>
135 <li>bat - emit batch information</li>
136 <li>pix - emit messages about pixel operations</li>
137 <li>buf - emit messages about buffer objects</li>
138 <li>reg - emit messages about regions</li>
139 <li>fbo - emit messages about framebuffers</li>
140 <li>fs - dump shader assembly for fragment shaders</li>
141 <li>gs - dump shader assembly for geometry shaders</li>
142 <li>sync - emit messages about synchronization</li>
143 <li>prim - emit messages about drawing primitives</li>
144 <li>vert - emit messages about vertex assembly</li>
145 <li>dri - emit messages about the DRI interface</li>
146 <li>sf - emit messages about the strips &amp; fans unit (for old gens, includes the SF program)</li>
147 <li>stats - enable statistics counters. you probably actually want perfmon or intel_gpu_top instead.</li>
148 <li>urb - emit messages about URB setup</li>
149 <li>vs - dump shader assembly for vertex shaders</li>
150 <li>clip - emit messages about the clip unit (for old gens, includes the CLIP program)</li>
151 <li>aub - dump batches into an AUB trace for use with simulation tools</li>
152 <li>shader_time - record how much GPU time is spent in each shader</li>
153 <li>no16 - suppress generation of 16-wide fragment shaders. useful for debugging broken shaders</li>
154 <li>blorp - emit messages about the blorp operations (blits &amp; clears)</li>
155 <li>nodualobj - suppress generation of dual-object geometry shader code</li>
Alejandro Piñeiroa26e82b2015-09-14 20:16:25 +0200156 <li>optimizer - dump shader assembly to files at each optimization pass and iteration that make progress</li>
Chris Forbes90d18552013-11-24 18:12:49 +1300157</ul>
Brian Paul1d8b3082010-01-26 09:12:32 -0700158</ul>
159
160
Matt Turneref3cec52012-01-30 13:58:10 -0500161<h2>Radeon driver environment variables (radeon, r200, and r300g)</h2>
Brian Paul1bf99542011-02-17 07:29:20 -0700162
Brian Paul1d8b3082010-01-26 09:12:32 -0700163<ul>
Matt Turneref3cec52012-01-30 13:58:10 -0500164<li>RADEON_NO_TCL - if set, disable hardware-accelerated Transform/Clip/Lighting.
Brian Paul1d8b3082010-01-26 09:12:32 -0700165</ul>
166
Brian Paul1bf99542011-02-17 07:29:20 -0700167
168<h2>EGL environment variables</h2>
169
Chia-I Wu7fc35812010-02-02 11:05:19 +0800170<p>
171Mesa EGL supports different sets of environment variables. See the
172<a href="egl.html">Mesa EGL</a> page for the details.
173</p>
Brian Paul1d8b3082010-01-26 09:12:32 -0700174
Brian Paul1bf99542011-02-17 07:29:20 -0700175
176<h2>Gallium environment variables</h2>
177
178<ul>
Marek Olšákdd6152b2013-03-26 03:19:10 +0100179<li>GALLIUM_HUD - draws various information on the screen, like framerate,
180 cpu load, driver statistics, performance counters, etc.
181 Set GALLIUM_HUD=help and run e.g. glxgears for more info.
Brian Paul75e62022012-06-25 11:44:44 -0600182<li>GALLIUM_LOG_FILE - specifies a file for logging all errors, warnings, etc.
183 rather than stderr.
Brian Paul1bf99542011-02-17 07:29:20 -0700184<li>GALLIUM_PRINT_OPTIONS - if non-zero, print all the Gallium environment
185 variables which are used, and their current values.
Brian Paul1bf99542011-02-17 07:29:20 -0700186<li>GALLIUM_DUMP_CPU - if non-zero, print information about the CPU on start-up
187<li>TGSI_PRINT_SANITY - if set, do extra sanity checking on TGSI shaders and
188 print any errors to stderr.
189<LI>DRAW_FSE - ???
190<LI>DRAW_NO_FSE - ???
191<li>DRAW_USE_LLVM - if set to zero, the draw module will not use LLVM to execute
192 shaders, vertex fetch, etc.
Brian Paul90fa71b2013-06-07 10:12:28 -0600193<li>ST_DEBUG - controls debug output from the Mesa/Gallium state tracker.
194Setting to "tgsi", for example, will print all the TGSI shaders.
195See src/mesa/state_tracker/st_debug.c for other options.
Brian Paul1bf99542011-02-17 07:29:20 -0700196</ul>
197
198<h3>Softpipe driver environment variables</h3>
199<ul>
200<li>SOFTPIPE_DUMP_FS - if set, the softpipe driver will print fragment shaders
201 to stderr
202<li>SOFTPIPE_DUMP_GS - if set, the softpipe driver will print geometry shaders
203 to stderr
204<li>SOFTPIPE_NO_RAST - if set, rasterization is no-op'd. For profiling purposes.
Jakob Bornecrantz6afa7cd2012-01-09 21:37:50 +0100205<li>SOFTPIPE_USE_LLVM - if set, the softpipe driver will try to use LLVM JIT for
Nathan Kidd0691b372014-01-03 16:44:00 -0700206 vertex shading processing.
Brian Paul1bf99542011-02-17 07:29:20 -0700207</ul>
208
209
210<h3>LLVMpipe driver environment variables</h3>
211<ul>
212<li>LP_NO_RAST - if set LLVMpipe will no-op rasterization
Nathan Kidd0691b372014-01-03 16:44:00 -0700213<li>LP_DEBUG - a comma-separated list of debug options is accepted. See the
Brian Paul1bf99542011-02-17 07:29:20 -0700214 source code for details.
215<li>LP_PERF - a comma-separated list of options to selectively no-op various
216 parts of the driver. See the source code for details.
217<li>LP_NUM_THREADS - an integer indicating how many threads to use for rendering.
218 Zero turns of threading completely. The default value is the number of CPU
219 cores present.
220</ul>
221
Brian Paul90fa71b2013-06-07 10:12:28 -0600222<h3>VMware SVGA driver environment variables</h3>
223<ul>
224<li>SVGA_FORCE_SWTNL - force use of software vertex transformation
225<li>SVGA_NO_SWTNL - don't allow software vertex transformation fallbacks
226(will often result in incorrect rendering).
227<li>SVGA_DEBUG - for dumping shaders, constant buffers, etc. See the code
228for details.
229<li>See the driver code for other, lesser-used variables.
230</ul>
231
Brian Paul1bf99542011-02-17 07:29:20 -0700232
233<p>
234Other Gallium drivers have their own environment variables. These may change
235frequently so the source code should be consulted for details.
236</p>
237
Andreas Bollb5da52a2012-09-18 18:57:02 +0200238</div>
Andreas Bollecd5c7c2012-06-12 09:05:03 +0200239</body>
240</html>