summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-03cell: change context type passed to cell_flush_int()Brian Paul
2008-09-03gallium: comments about nblocksx/y, etcBrian Paul
2008-09-03gallium: silence warningsBrian Paul
2008-09-03cell: replace assert() with special spu ASSERT() macroBrian Paul
2008-09-03cell: add pipe_texture_reference() call in cell_get_tex_surface()Brian Paul
2008-09-03cell: updated assertionBrian Paul
2008-09-03cell: commentsBrian Paul
2008-09-03gallium: do image clipping in xmesa_display_surface_tiled()Brian Paul
2008-09-03cell: fix texture/surface allocation to allocate by multiple of tile sizeBrian Paul
This fixes the garbage blocks/pixels seen along the bottom of some windows.
2008-09-03cell: move misplaced assertions; put them after ximage is assigned.Brian Paul
2008-09-03i915: Fix typo in intel_lock.cJakob Bornecrantz
2008-09-03cell: add -DDEBUG flag, fixes to Cell MakefilesBrian Paul
2008-09-03Cell: added linux-cell-debug configBrian Paul
linux-cell is now the optimized configuration. Remove some Cell-specific stuff from winsys/xlib/Makefile.
2008-09-03cell: add missing cell_tex_surface_release()Brian Paul
2008-09-03gallium: Have pipe_buffer_* receive a pipe_screen instead of a pipe_context.José Fonseca
We want to use the pipe_buffer_* inlines everywhere, but a pipe context is not always available nor is it needed.
2008-09-03draw: Describe the steps in emit_load_R32G32B32A32.José Fonseca
2008-09-02fix BUFFER_DEPTH/BUFFER_ACCUM mix-upBrian Paul
2008-09-02gallium: increase string buffer size to 16000 to avoid truncated output of ↵Brian Paul
long shaders
2008-09-02gallium: fix out of bounds array errors in SSE executionBrian Paul
1. #define MAX_INPUTS/OUTPUTS/TEMPS/etc with better values. 2. Add assertions in aos_get_x86() to check register file indexes 3. Assert that constant regs haven't changed after running SSE code.
2008-09-02Intialize swizzled_surface objectPatrice Mandin
2008-09-02i915: Fix typo in ws_dri_bufmgr.cJakob Bornecrantz
2008-09-02i915: Small fixes for tiled texturesJakob Bornecrantz
2008-09-01g3dvl: Use consistent variable names.Younes Manton
2008-09-01g3dvl: Use one VB for all MBs, sort MBs at flush to determine placement.Younes Manton
2008-09-01gallium: remove glthread.h file (not used)Brian Paul
2008-09-01gallium: removed p_pointer.h (use util/u_pointer.h instead)Brian Paul
2008-09-01gallium: include u_pointer,h, not p_pointer.hBrian Paul
2008-09-01mesa: use CALLOC instead of MALLOC to fix valgrind warningBrian Paul
2008-09-01gallium: added st_bind/release_teximage() functionsBrian Paul
2008-09-01gallium: move st_texture_image() cast wrapper to header fileBrian Paul
2008-09-01egl: CreatePbufferSurface, Bind/ReleaseTexImage functionsBrian Paul
2008-09-01egl: additional error checking in _eglBind/ReleaseTexImage()Brian Paul
2008-09-01g3dvl: Some clean ups.Younes Manton
2008-09-01g3dvl: Inline hint for relatively small, frequently called functions.Younes Manton
2008-09-01g3dvl: Re-enable buffer rotation, disable high quality 420->444 conversion.Younes Manton
Using linear interpolation when upscaling the chroma blocks causes some discoloration around the edges.
2008-09-02pipebuffer: Add missing break statement to cache lookup logic.José Fonseca
Second loop was never run. Spotted by Keith.
2008-09-02pipebuffer: Comment the slab code. Remove the freeSlabs list.José Fonseca
The freeSlabs list is not really needed as we free empty slabs immediately. Time based cached is done separately.
2008-09-02scons: Optimize for speed, not size, with MSVC.José Fonseca
2008-09-02draw: Put INLINES where appropriate.José Fonseca
In the hope of MSVC inline some more functions, but without much result.
2008-09-01util: make timed_winsys os independentKeith Whitwell
2008-09-01util: add func to return time as uint64 microsecondsKeith Whitwell
2008-09-01add u_timed_winsys.[ch]Keith Whitwell
2008-09-01remove depend.bak in realcleanKeith Whitwell
2008-08-31nv30: set fp samplers with fragprog generationPatrice Mandin
2008-08-31Remove CVS keywords.José Fonseca
Please remove CVS keywords when importing third-party code into the git repository.
2008-08-31util: Fix compiler errors in the release build of C++ sources.José Fonseca
2008-08-31gallium: winsys/common no longer existsJosé Fonseca
2008-08-30nv30: activate fp texture units when needed, to get texturingPatrice Mandin
2008-08-29Added command line option for Scons to select which version of MSVS to use. ↵Jonathan White
Versions 7.1, 8.0 and 9.0 are allowed. Usage is scons MSVS_VERSION=8.0.
2008-08-28g3dvl: Buffer the entire frame before rendering.Younes Manton