summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_debug.h
AgeCommit message (Collapse)Author
2008-03-24gallium: fix a few bugs, warnings in the p_debug codeBrian
added missing _ to a _debug_printf() call.
2008-03-24gallium: Simple cross platform get-opt system.José Fonseca
Uses getenv on Linux, and a memory mapped text file on Windows. It supports boolean options, flags, and plain strings.
2008-03-24gallium: cleanup p_debugJosé Fonseca
Now debug_printf is disabled on release builds. Use debug_error or _debug_printf to output messages on release versions.
2008-03-23gallium: Remove the debug_mask_* stuff.José Fonseca
Overcomplex and not much different from using a global variable...
2008-03-23gallium: Memory debugging utilities.José Fonseca
There are no known tools for windows kernel memory debugging, so this is a simple set of malloc etc wrappers. Enabled by default on win32 debug builds
2008-03-20gallium: add debug facility to dump random blobs as hexKeith Whitwell
2008-03-19gallium: Add generic enum and flags dumping utility functions.José Fonseca
2008-03-18gallium: Convenience debug_warning function.José Fonseca
2008-03-13gallium: Fix debug_mask_vprintf's example.José Fonseca
2008-03-12gallium: Conditional debugging output.José Fonseca
Generalize the conditional debugging output code found trhought the gallium drivers.
2008-03-08gallium: Document debug_printf usage.José Fonseca
2008-02-15Code reorganization: move files into their places.José Fonseca
This is in a separate commit to ensure renames are properly preserved.