Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-22 | gallium: move pipe_copy_rect(), pipe_fill_rect() protos into new u_rect.h header | Brian Paul | |
2008-08-22 | gallium: replace align_int() with align() | Brian Paul | |
The two functions are identical. Removed align_int() from p_util.h | |||
2008-08-22 | gallium: insert __cplusplus/extern wrappings | Brian Paul | |
2008-08-22 | gallium: move math macros from p_util.h to u_math.h | Brian Paul | |
More can be done... | |||
2008-08-22 | gallium: stop using ifloor(), FABSF(), etc | Brian Paul | |
2008-08-22 | gallium: stop using FABSF() macro | Brian Paul | |
2008-08-22 | gallium: replace LOG2() macro with util_fast_log2() inline func | Brian Paul | |
2008-08-22 | gallium: use new util_fast_exp2(), _log2(), pow() functions | Brian Paul | |
New code surrounded with #if FAST_MATH to allow comparing against original code if we need to debug. | |||
2008-08-22 | gallium: new u_math.[ch] files for math functions | Brian Paul | |
So far, optimized/low-precision versions of exp(), exp2(), log2(), pow(). | |||
2008-08-22 | python/retrace: Interpret texture/surfaces destructions. | José Fonseca | |
2008-08-22 | trace: Don't trace texture/surfaces releases, only destructions. | José Fonseca | |
2008-08-22 | trace: Use a 4 hexadecimal digit suffix. | José Fonseca | |
2008-08-22 | python/retrace: Process the trace call-by-call (instead of reading ↵ | José Fonseca | |
everything into memory). | |||
2008-08-21 | python/retrace: Support gziped traces. | José Fonseca | |
2008-08-21 | trace: Hack to detect writes to user buffers. | José Fonseca | |
It often happens that new data is written directly to the user buffers without mapping/unmapping. This hack marks user buffers and dumps them before passing them to pipe context. | |||
2008-08-21 | trace: Split the output stream on windows. | José Fonseca | |
Because windows limits the ammount of memory that can be mapped. | |||
2008-08-20 | gallium: test for and cull prims with inf/nan vertices in sp_setup.c code. | Brian Paul | |
2008-08-20 | gallium: fix typo in LINE() macro (replace i+1 with i1 var) | Brian Paul | |
We were sometimes referencing an invalid vertex. Fixes progs/trivial/line-clip.c test among others. | |||
2008-08-20 | python/retrace: Retrace draw_elements and draw_range_elements. | José Fonseca | |
2008-08-20 | python: bindings for draw_range_elements. | José Fonseca | |
2008-08-19 | gallium: fix do_flip bug in sp_surface_copy() | Brian Paul | |
Surfaces are always in y=0=top raster order so the caller should invert the Y coordinate if needed; don't do it in sp_surface_copy(). Fixes a glCopyTexture regression. | |||
2008-08-19 | gallium: fix an assertion | Brian Paul | |
2008-08-19 | gallium: WinCE build fixes. | José Fonseca | |
2008-08-19 | python/retrace: Add several missing functions. | José Fonseca | |
2008-08-19 | trace: Fix pipe_clip_state dump. | José Fonseca | |
2008-08-19 | python: Handle null state. | José Fonseca | |
2008-08-19 | python/retrace: Trim null chars. | José Fonseca | |
They are often left in memory mapped files, and are not part of the XML accept chars anyway. | |||
2008-08-19 | trace: Support C++. | José Fonseca | |
2008-08-19 | gallium: Add note about vs_2_0 EXPP mapping. | Michal Krol | |
2008-08-19 | tgsi: Implement LOG opcode for SSE2 codegen. | Michal Krol | |
2008-08-19 | tgsi: Implement EXP opcode for SSE2. | Michal Krol | |
2008-08-19 | xlib: Revert destroying pipe_screen (temporary). | José Fonseca | |
2008-08-19 | tgsi: Fix ARL opcode in SSE2 codegen. | Michal Krol | |
2008-08-19 | tgsi: Workaround debug output buffer size limitations. | Michal Krol | |
2008-08-19 | tgsi: Use NUM_CHANNELS. | Michal Krol | |
2008-08-18 | trace: Explain how to integrate with a state tracker or winsys. | José Fonseca | |
2008-08-18 | trace: Preliminary stream implementation for GDI. | José Fonseca | |
2008-08-18 | trace: Use long longs to ensure covering 64bits integers. | José Fonseca | |
2008-08-18 | trace: Get the trace file from the GALLIUM_TRACE option itself. | José Fonseca | |
2008-08-18 | gallium: Remove TGSI_CC_UN. | Michal Krol | |
2008-08-18 | tgsi: Update condition code vector when storing dest register. | Michal Krol | |
2008-08-18 | tgsi: Saturate modifier obeys ExecMask. | Michal Krol | |
Implement NVIDIA [-1;+1] saturate mode. | |||
2008-08-18 | tgsi: Respect condition codes when storing destination register. | Michal Krol | |
2008-08-18 | tgsi: Cosmetic changes. | Michal Krol | |
2008-08-18 | tgsi: Add condition code (CC) register. | Michal Krol | |
2008-08-18 | scons: Fix build. | Michal Krol | |
2008-08-17 | if we can't find a mode, return first. At least we should | Alan Hourihane | |
see the top left portion if we've got larger screens on other CRTC's | |||
2008-08-17 | consolidate intel directories. | Alan Hourihane | |
we now have src/gallium/winsys/drm/intel/{common,dri,egl} | |||
2008-08-17 | rather than use CRTC 1 (aka LVDS), try and setup all connectors/encoders | Alan Hourihane | |
and get the same output on all. | |||
2008-08-15 | xlib: Kill xmesa_surface. | José Fonseca | |
A winsys cannot expect that the surfaces passed display_surface are the surfaces it created, as surface are now in generate texture views created by pipe_screen. Indeed, the fact it was working so far was mere luck. This fixes a weird tiled output when using the trace pipe driver. Winsys' surfaces should die. |