summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/p_debug.c
AgeCommit message (Collapse)Author
2008-05-01gallium: Add newline to eof.José Fonseca
2008-05-01gallium: Fix release build.José Fonseca
2008-05-01d3d: Windows miniport driver portability fixes.José Fonseca
2008-04-29silence p_debug.h:63: warning: ISO C forbids forward references to ↵Zack Rusin
‘enum’ types
2008-04-29gallium: add debug_print_format() make it easier to print format error messagesKeith Whitwell
2008-04-25gallium: Windows user mode portability fixes.José Fonseca
2008-04-17gallium: Use debug_get_bool_option for controlling assert failure behaviour.José Fonseca
Add GALLIUM_ABORT_ON_ASSERT=no to C:\gallium.cfg instead.
2008-04-15gallium: Cache one line worth of debug output on windows.José Fonseca
The windbg connection seems synchronous, so this speeds up when printing little text at a time (e.g., tgsi output).
2008-04-15gallium: Don't assume snprintf are always available.José Fonseca
2008-04-05gallium: Use the custom snprintf implementation everywhere (for Win32).José Fonseca
Because winddk's implemenation does not handle floats.
2008-03-25gallium: Fix default option on Windows.José 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-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-13gallium: make the windows config function more readable with 80-ish columnsKeith Whitwell
2008-03-12gallium: Change assert behavior on runtime (Mark Mueller).José Fonseca
2008-03-12gallium: Conditional debugging output.José Fonseca
Generalize the conditional debugging output code found trhought the gallium drivers.
2008-03-10gallium: Use hardcoded breakpoints on x86 targets.José Fonseca
2008-03-10gallium: WinCE portability fixes.José Fonseca
2008-03-05gallium: Use custom vsnprintf in WINDDK.José Fonseca
EngDebugPrint does not handle float point arguments, so we need to use our own vsnprintf implementation.
2008-03-03win32: don't prepend all debug with gallium3dKeith Whitwell
2008-02-15Code reorganization: s/aux/auxiliary/.José Fonseca
"aux" is a reserved name on Windows (X_X)