summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_debug.h
AgeCommit message (Collapse)Author
2009-02-18util: Move p_debug.h into util module.José Fonseca
The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible.
2009-01-17debug: add noprefix version of debug_dump_enumKeith Whitwell
2008-10-28gallium: recognize DEBUG as well as DBG for debuggingKeith Whitwell
2008-09-08util: Dump surfaces to BMP.José Fonseca
This allows quick inspection of surfaces in mass scale.
2008-08-07gallium: New function to dump surfaces.José Fonseca
2008-06-24gallium: Drop deprecated __MSC__ macro.José Fonseca
2008-06-12gallium: Implement debug_get_num_option.José Fonseca
For numeric options.
2008-05-28gallium: Windows CE portability fixes.José Fonseca
2008-05-24gallium: Poor-man profiler for win32 kernel.José Fonseca
2008-05-07gallium: Simple facility to dump and view images for debugging.José Fonseca
2008-04-29silence p_debug.h:63: warning: ISO C forbids forward references to ↵Zack Rusin
‘enum’ types
2008-04-29gallium: declare pipe_format enum to silence warningsBrian Paul
2008-04-29gallium: add debug_print_format() make it easier to print format error messagesKeith Whitwell
2008-04-08gallium: Allow to debug memory leaks in nested scopes.José Fonseca
2008-03-27gallium: silence unused var warningBrian
2008-03-25Fix typoJosé Fonseca
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.