summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_debug.h
AgeCommit message (Collapse)Author
2010-02-17util: Fix typo of debug_dump_float_rgba_bmp.Vinson Lee
2010-02-05Merge remote branch 'origin/lp-binning'José Fonseca
Conflicts: src/gallium/auxiliary/util/u_dl.c src/gallium/auxiliary/util/u_time.h src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_tile_cache.c
2010-02-03util: Reimplement all utility functions in terms of the new OS abstraction.José Fonseca
2010-02-02gallium: Move some compiler portability stuff into p_compiler.hJosé Fonseca
2010-01-14gallium/util: added debug_dump_texture() and ppm outputBrian Paul
Now we can get dump debug images on Linux too.
2009-12-28util: better fix for unused variable warnings with assertsKeith Whitwell
Modify the non-debug (ie disabled) version of assert to expose the value in the expression to the compiler (avoiding the unused variable messages) while still expanding to a noop.
2009-11-04util: Remove homegrown Windows KM profiler.José Fonseca
It's not sampling based so its results are biased towards functions called many times.
2009-10-04util: Make assert a no-op on non-debug builds.José Fonseca
This ensures that an assertion like assert(expensive_test()); won't have any penalty on release builds. It also implies that no vital code should be in assert expressions.
2009-09-21gallium debug: Add gcc printf hint to debug_printfNicolai Hähnle
This causes gcc to issue warnings when format parameters do not match up with the format string in calls to debug_printf. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-09gallium: Added HaikuOS platformaljen
2009-04-24util: Add debug_printf_onceMicah Dowty
2009-04-24util: Add more entry points for dumping to bmpJakob Bornecrantz
2009-03-31util: Enable assembly breakpointt on x86_64.José Fonseca
A breakpoint is much nicer than abort when gdb is attached.
2009-03-25util: Don't use x86 asm on x86_64.José Fonseca
2009-03-22debug: Add function for writing transfers to filesJakob Bornecrantz
2009-03-12util: fix debug_assert() to avoid unused variable warnings in release buildsKeith Whitwell
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.