blob: 9d3f7ad9567e7892fb1b335d862782826541080f [file] [log] [blame]
Erik Faye-Lund4d066832020-06-12 20:09:42 +02001Debugging Tips
2==============
3
4Normally Mesa (and OpenGL) records but does not notify the user of
5errors. It is up to the application to call ``glGetError`` to check for
6errors. Mesa supports an environment variable, ``MESA_DEBUG``, to help
7with debugging. If ``MESA_DEBUG`` is defined, a message will be printed
8to stdout whenever an error occurs.
9
10More extensive error checking is done in DEBUG builds
Jose Fonseca6e6cd7d2021-03-19 20:08:54 +000011(``--buildtype debug`` for Meson).
Erik Faye-Lund4d066832020-06-12 20:09:42 +020012
13In your debugger you can set a breakpoint in ``_mesa_error()`` to trap
14Mesa errors.
15
16There is a display list printing/debugging facility. See the end of
17``src/dlist.c`` for details.