summaryrefslogtreecommitdiffstats
path: root/src/gallium
Commit message (Collapse)AuthorAgeFilesLines
* draw: fix incorrect instancing divisor in LLVM codeBrian Paul2010-07-191-3/+6
|
* r300g: fix possible crash in destroy_contextMarek Olšák2010-07-191-2/+2
| | | | | | | | | The problem is destroy_context is almost NEVER called. The only test for destroy_context I know is compiz. Reported by Vinson Lee. FDO bug #29150.
* util: remove the dummy field in mempoolMarek Olšák2010-07-192-14/+4
| | | | It should allocate less memory now.
* util: add dummy field to empty structure typesBrian Paul2010-07-192-2/+2
| | | | | Empty structure types aren't allowed with MSVC. I haven't tested this change. Hope I haven't broken it...
* r300g: fix typoMarek Olšák2010-07-191-1/+1
|
* r300g: use memory pools for buffer_create and get_transferMarek Olšák2010-07-195-24/+101
| | | | The improvement in Tremulous: 68.9 fps -> 71.1 fps.
* util: add a memory pool for equally sized memory allocationsMarek Olšák2010-07-194-0/+267
| | | | malloc/free are in O(1).
* r300g: u_upload optimisationDave Airlie2010-07-184-7/+15
| | | | fix vb/ib uploads
* gallium/st/dri2: add dri2 vblank query extension supportSven Arvidsson2010-07-181-0/+1
| | | | | | | from bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=28771 Signed-off-by: Dave Airlie <[email protected]>
* llvmpipe: Remove dead initialization.Vinson Lee2010-07-181-1/+1
|
* r300g: final fix for r3xx constant buffer emissionMarek Olšák2010-07-171-1/+1
|
* r300g: fix typo in r3xx constant buffer emissionMarek Olšák2010-07-171-1/+1
| | | | Ooops.
* r300g: fix constant buffer emission on r3xxMarek Olšák2010-07-171-1/+1
| | | | FDO bug #29128.
* llvmpipe: Remove unused variable in lp_test_sincos.Vinson Lee2010-07-171-2/+0
|
* nv50: s/__func__/__FUNCTION__/Vinson Lee2010-07-161-1/+1
|
* nouveau: s/__func__/__FUNCTION__/Vinson Lee2010-07-161-1/+1
|
* nouveau: s/snprintf/util_snprintf/Vinson Lee2010-07-161-1/+2
|
* r300g: Remove unnecessary header.Vinson Lee2010-07-161-1/+0
|
* nouveau: s/inline/INLINE/Vinson Lee2010-07-163-5/+5
|
* scons: Fix Cygwin build.Vinson Lee2010-07-161-3/+3
| | | | The Cygwin SCons build needed several file names to be fully qualified.
* r300g: inline winsys_buffer_destroyMarek Olšák2010-07-161-12/+4
|
* r300g: do not make copies of constant buffers, emit them directlyMarek Olšák2010-07-167-47/+28
|
* draw: updated debug/dump codeBrian Paul2010-07-161-12/+25
|
* draw: added array element debug / bounds checking code (disabled)Brian Paul2010-07-161-4/+24
|
* llvmpipe: use single swizzled tileKeith Whitwell2010-07-167-100/+148
| | | | | | | | | | | | | Use a single swizzled tile per colorbuf (and per thread) to avoid accumulating large amounts of cached swizzled data. Now that the SSE3 code has been merged to master, the performance delta of this change is minimal, the main benefit is reduced memory usage due to no longer keeping swizzled copies of render targets. It's clear from the performance of the in-place version of this code that there is still quite a bit of time being spent swizzling & unswizzling, but it's not clear exactly how to reduce that.
* llvmpipe: Describe _mm_shuffle_epi8() with gcc extended inline assembly when ↵José Fonseca2010-07-161-3/+30
| | | | -mssse3 is not supported/enabled.
* llvmpipe: Only use -mssse3 on gcc 4.3+José Fonseca2010-07-161-1/+5
|
* draw/llvm: adjust the instance id at run timeZack Rusin2010-07-163-16/+29
| | | | fixes instancing in draw llvm
* draw: use the instance id when fetching vertex dataZack Rusin2010-07-161-3/+11
|
* st/egl: Fix build on FreeBSD.Chia-I Wu2010-07-161-1/+1
| | | | | | | There is no libdl on FreeBSD. Based on patch from Thinker <[email protected]>, which is against 7.8. This fixes fdo bug #29093.
* i965g: Remove dead initialization in precalc_tex.Vinson Lee2010-07-161-1/+1
|
* r300g: rebuild winsys and command submission to support multiple contextsMarek Olšák2010-07-1620-557/+664
|
* llvmpipe: implement instanced drawing functionsBrian Paul2010-07-151-20/+108
| | | | | And express all the other drawing functions in terms of llvmpipe_draw_range_elements_instanced().
* draw: update comments for drawing functionsBrian Paul2010-07-151-5/+16
|
* draw: move prototype, update commentBrian Paul2010-07-151-3/+3
|
* softpipe: re-order drawing functions to get rid of prototypeBrian Paul2010-07-151-108/+102
|
* graw: new tri-instanced.c program to test instanced drawingBrian Paul2010-07-152-0/+297
|
* llvmpipe: Remove redundant statement.José Fonseca2010-07-151-1/+0
| | | | Thanks to Vinson for spotting this.
* tgsi: Remove dead assignment in uprcase function.Vinson Lee2010-07-151-1/+1
|
* llvmpipe: delete lp_test_*.o files with make cleanBrian Paul2010-07-141-0/+3
|
* gallium: added CLEAN_EXTRA var for make clean targetBrian Paul2010-07-141-1/+1
|
* gallium: Ensure prototypes are wrapped in extern "C".José Fonseca2010-07-141-0/+11
| | | | | Fixes MSVC build failure due to inconsistent _ReadWriteBarrier prototype.
* llvmpipe: Remove redundant alignments.José Fonseca2010-07-142-3/+1
| | | | | | | The lp_rast_shader_inputs' alignment is irrelevant now that it contains pointers instead of actual data. Likewise, lp_rast_triangle's size alignment is meaningless.
* llvmpipe: Addi ssse3 swizzling for B8G8R8A8_UNORM.Chris Li2010-07-143-3/+231
|
* gallium: Add a macro for memory barriers.José Fonseca2010-07-141-0/+19
|
* gallium: Add a new PIPE_ARCH_SSSE3 define for SSSE3 compiler support.José Fonseca2010-07-141-0/+5
|
* Merge branch 'mesa-2d-registers'Zack Rusin2010-07-133-5/+14
|\
| * tgsi: make sure that we print out the adjacency prims correctlyZack Rusin2010-07-101-1/+5
| |
| * draw: fix decomposition to work with adjacency primitivesZack Rusin2010-07-101-3/+8
| |
| * mesa: get the translation from mesa 2d regs to tgsi workingZack Rusin2010-07-101-1/+1
| | | | | | | | first working version of arb_geometry_shader4