Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-05 | pb: Save the stack backtrace when creating/mapping a debug buffer. | José Fonseca | |
2009-05-05 | pb: Dump the fenced buffer sizes. | José Fonseca | |
2009-05-01 | draw: added some inf/nan debug code (disabled) | Brian Paul | |
2009-04-29 | tgsi: added tgsi_check_soa_dependencies() and related debug code (disabled) | Brian Paul | |
The TGSI interpeter operates in SOA style. We need to check for data dependencies in instructions which read from and write to the same register. For now just adding some debug code to detect that condition. Actual fixes to follow. | |||
2009-04-28 | gallium/draw: add ability to print out active pipeline stages | Keith Whitwell | |
2009-04-28 | util/indices: remove debug prints | Keith Whitwell | |
2009-04-27 | util: Remove unix includes. | José Fonseca | |
2009-04-27 | util/time: add util_time_sleep() for windows userspace | Keith Whitwell | |
Somebody with a clue could probably do a better implemenation... | |||
2009-04-24 | util: Add debug_printf_once | Micah Dowty | |
2009-04-24 | tgis: SSE code generator doesn't yet support indirect addressing of temp regs | Brian Paul | |
Fall back to interpreter in this case. | |||
2009-04-24 | pipebuffer: don't fail when validating mapped buffers | Keith Whitwell | |
This can be almost impossible to avoid - hopefully we won't encounter a situation where this is a true requirement. Would probably require drivers to flush between hardware and software vertex processing. | |||
2009-04-24 | util: Add more entry points for dumping to bmp | Jakob Bornecrantz | |
2009-04-22 | gallium: license, copyright | Brian Paul | |
2009-04-20 | util: don't set unused blend state | Keith Whitwell | |
Try to avoid creating multiple blend atoms. | |||
2009-04-17 | util: flush stdout before emitting debug_printf on stderr | Keith Whitwell | |
A lot of the mesa demos emit commentary on stdout, try to keep it in sync with the corresponding output from debug_printf(). | |||
2009-04-15 | util: Fix surface usage | Jakob Bornecrantz | |
2009-04-15 | gallium: new, simple RGBA surface create/destroy helpers | Brian Paul | |
Use these for quickly creating an RGBA drawing surface. | |||
2009-04-10 | tgsi/sse2: Cleanup NRM/NRM4 implementation. | Michal Krol | |
Fix comments. Make sure .w is set to 1.0 for NRM. Optimise for non-.xyzw writemasks. | |||
2009-04-10 | rtasm: Silence `static function not used' warning. | Michal Krol | |
2009-04-10 | draw: Silence pointer-to-integer cast warning. | Michal Krol | |
2009-04-10 | draw: Fix vertex_header initialisation. | Michal Krol | |
2009-04-09 | tgsi/sse2: Fix build. | Michal Krol | |
2009-04-09 | draw: Fix LIT instruction. | Michal Krol | |
2009-04-09 | gallium: remove unneeded compressed=0 assignment | Brian Paul | |
2009-04-09 | tgsi/sse2: Fix ARL instruction. | Michal Krol | |
2009-04-09 | tgsi/sse2: Fix LIT instruction. | Michal Krol | |
2009-04-08 | gallium: handle the case of util_pack_z_stencil(format=PIPE_FORMAT_S8_UNORM) | Brian Paul | |
Fixes failed assertion in glean fbo test. | |||
2009-04-04 | gallium: Clean up driver clear() interface. | Michel Dänzer | |
Only allows clearing currently bound buffers, but colour and depth/stencil in a single call. | |||
2009-04-04 | gallium: Add utility helper for packing combined depth/stencil values. | Michel Dänzer | |
2009-04-03 | tgsi/exec: Actually enable switch-case for FLR. | Michal Krol | |
2009-04-03 | tgsi/text: Allow optional component selection for indirect registers. | Michal Krol | |
2009-04-03 | util/debug: Initialise local variables. | Michal Krol | |
2009-04-03 | tgsi/text: Allow `-|src|` variant of `-(|src|)`. | Michal Krol | |
2009-04-01 | util: Fix x86_64 build. | José Fonseca | |
2009-04-01 | util: Lookup symbol names from addresses. | José Fonseca | |
Nice for stack backtraces. Windows-only for now. | |||
2009-04-01 | tgsi: Fix structure members initialisation. | Michal Krol | |
2009-04-01 | tgsi: Lookup alternate instruction mnemonics when parsing tgsi text. | Michal Krol | |
2009-04-01 | tgsi: Provide alternate instruction mnemonics in tgsi info. | Michal Krol | |
2009-04-01 | tgsi/doc: Fix typo. | Michal Krol | |
2009-03-31 | tgsi: added some helpful debug functions in the tgsi interpreter | Brian Paul | |
Check for NaN/Inf, print exec vectors, print temp registers. | |||
2009-03-31 | draw: added Nan/Inf assertion in debug code | Brian Paul | |
2009-03-31 | gallium: added util_is_inf_or_nan() function to u_math.h | Brian Paul | |
2009-03-31 | util: Enable assembly breakpointt on x86_64. | José Fonseca | |
A breakpoint is much nicer than abort when gdb is attached. | |||
2009-03-30 | tgsi: Condition codes are implied in KILP. | Michal Krol | |
2009-03-30 | tgsi: Explain symbols used in instruction set documentation. | Michal Krol | |
2009-03-30 | tgsi: Document BRA opcode. | Michal Krol | |
2009-03-27 | util: Support Z24S8/Z24X8. | José Fonseca | |
2009-03-27 | mesa: Use the python executable from sys.executable. | José Fonseca | |
From Ramesh Dharan <rrdharan@vmware.com> | |||
2009-03-26 | tgsi: pass zero vector to texture sampler for 1D case instead of NULL | Brian Paul | |
Fixes segfault when sampling 1D textures. | |||
2009-03-25 | translate: Avoid unused variable warning. | José Fonseca | |