summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-02i915: Fix typo in ws_dri_bufmgr.cJakob Bornecrantz
2008-09-02i915: Small fixes for tiled texturesJakob Bornecrantz
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-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-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-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-28mesa: added test for very long fixed-function vertex programsBrian Paul
2008-08-28mesa: remove debug codeBrian Paul
2008-08-28mesa: dynamically grow the fixed function vertex program as neededBrian Paul
Don't use a fixed-size array. Saves memory in most cases and avoids potential overflow for long programs.
2008-08-28gallium: change the conditional which tests for combined Z+stencil buffersBrian Paul
The caller might be requesting 16-bit Z + 8-bit stencil be placed in a PIPE_FORMAT_S8Z24 or PIPE_FORMAT_Z24S8 buffer.
2008-08-28mesa: bump MAX_INSN to 300Brian Paul
2008-08-28pipebuffer: Fix/add detail to the under- overflow report messages.José Fonseca
2008-08-28pipebuffer: Check buffer over- & underflows when mapping/unmapping too.José Fonseca
2008-08-27egl: free display ext data in xdri_eglTerminate().Brian Paul
2008-08-28gallium: s/PIPE_OS_WINDOWS/PIPE_SUBSYSTEM_WINDOWS_USER/ in p_thread.José Fonseca
PIPE_OS_WINDOWS is an umbrella for all Windows variants and subsystems, PIPE_SUBSYSTEM_WINDOWS_USER is just for user-space windows (e.g., OpenGL), and the thread primitives currently included in p_thread only support the later.
2008-08-27gallium: better support for user-space interleaved arraysBrian Paul
Basically, set up one user-space wrapper for all arrays instead of the individual arrays.
2008-08-27gallium: in st_draw_vbo() try to detect interleaved arrays in a single VBO.Brian Paul
2008-08-27gallium: remove old assertionsBrian Paul
2008-08-27gallium: call st_finish() in XMesaFlush()Brian Paul
2008-08-27gallium: s/_glthread_Cond/unsigned/ in p_thread.hBrian Paul
2008-08-27gallium: Add dummy defines of pipe_condvar for Windows to make it compile.Michal Krol
2008-08-26gallium: thread wrapper clean-upBrian Paul
In p_thread.h replace _glthread_* functions with new pipe_* functions. Remove other old cruft.
2008-08-26cell: use SDK 3.0 by defaultBrian Paul
2008-08-26draw: attempt atomic submit of large drawelements callsKeith Whitwell
2008-08-26vbo: seed initial max_element value with a more likely candidateKeith Whitwell
2008-08-25cell: asst fixes to get driver building/running again.Brian
Note that SPU vertex transformation is disabled at this time.