1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4 <meta http-equiv=
"content-type" content=
"text/html; charset=utf-8">
5 <title>Debugging Tips
</title>
6 <link rel=
"stylesheet" type=
"text/css" href=
"mesa.css">
11 <h1>The Mesa
3D Graphics Library
</h1>
14 <iframe src=
"contents.html"></iframe>
17 <h1>Debugging Tips
</h1>
20 Normally Mesa (and OpenGL) records but does not notify the user of
21 errors. It is up to the application to call
22 <code>glGetError
</code> to check for errors. Mesa supports an
23 environment variable, MESA_DEBUG, to help with debugging. If
24 MESA_DEBUG is defined, a message will be printed to stdout whenever
29 More extensive error checking is done when Mesa is compiled with the
30 DEBUG symbol defined. You'll have to edit the Make-config file and
31 add -DDEBUG to the CFLAGS line for your system configuration. You may
32 also want to replace any optimization flags with the -g flag so you can
33 use your debugger. After you've edited Make-config type 'make clean'
37 In your debugger you can set a breakpoint in _mesa_error() to trap Mesa
41 There is a display list printing/debugging facility. See the end of
42 src/dlist.c for details.