summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
Commit message (Collapse)AuthorAgeFilesLines
* r300: Drop BGNFOR, ENDFOR, REP, and ENDREP opcodes.José Fonseca2010-04-271-2/+0
|
* cell: Drop BGNFOR, ENDFOR, REP, and ENDREP opcodes.José Fonseca2010-04-271-12/+0
|
* svga: Drop BGNFOR, ENDFOR, REP, and ENDREP opcodes.José Fonseca2010-04-271-3/+0
|
* llvmpipe: remove lp_scene_map_buffers(), lp_scene_unmap_buffers()Brian Paul2010-04-271-58/+4
|
* llvmpipe: implement max scene sizeBrian Paul2010-04-274-2/+61
| | | | | | | | When the size of the scene (binned data plus referenced resources/textures) exceeds LP_MAX_SCENE_SIZE flush/render the scene. This could be improved in various ways but is a good start. Fixes piglit streaming-texture-leak test.
* llvmpipe: added llvmpipe_resource_size()Brian Paul2010-04-272-0/+25
|
* llvmpipe: comment-out unused field for nowBrian Paul2010-04-271-1/+1
|
* llvmipe: update commentsBrian Paul2010-04-271-3/+3
|
* r300g: fix mipmapped texture3D size calculationMarek Olšák2010-04-271-1/+1
| | | | | | I accidentally inverted the condition. :( Broken since the commit 2579fe4044012a552c8be222ffae76b48de13592. FDO bug #27851.
* r300g: compensate for non-atomized emit_query_end in the CSMarek Olšák2010-04-272-4/+11
| | | | And reserve a little more space just in case.
* nvfx: Move src/gallium/drivers to beginning of SCons include path.Vinson Lee2010-04-271-1/+1
| | | | | | | | | | | | libdrm-2.4.20 and earlier include the nouveau/nouveau_class.h header. A later version of libdrm will not ship this header. Mesa also has this header at src/gallium/drivers. The symbol NV34TCL_VTXFMT_TYPE_HALF is needed by nvfx_vbo.c. This symbol is not in the libdrm copy of the header but is in the Mesa copy of the header. This patch moves src/gallium/drivers to the beginning of the include paths such that when building on hosts with libdrm-2.4.20 or ealier the build uses the copy in Mesa.
* r300g: reserve CS space for index offsetMarek Olšák2010-04-271-1/+1
| | | | | | | This has caused CS overflow since the commit 671f1e1229877d459cfd76e2cf5ea89c8d881036. TA3D works here again.
* llvmpipe: Remove unused variable.Vinson Lee2010-04-261-2/+0
|
* r300g: add support for more unaligned vertex formatsMarek Olšák2010-04-271-1/+33
| | | | | | An aligned stride is still needed for it to work. I am slowly approaching the Sauerbraten milestone!
* r300g: setup PSC first, then align vertex formatsMarek Olšák2010-04-271-3/+5
| | | | This allows us to put correct swizzles for undefined components in PSC.
* r300g: set undefined vertex swizzles to (0,0,0,1) respectivelyMarek Olšák2010-04-271-1/+8
|
* r300g: disable point sprites (again)Marek Olšák2010-04-261-1/+4
| | | | They cause lockups. The users doesn't seem to like them.
* r300g: fix warnings when printing uint64_tMarek Olšák2010-04-261-2/+4
| | | | Though not nice, this is the correct way.
* r300g: fix warnings by using the const qualifierMarek Olšák2010-04-261-1/+1
| | | | See also the libdrm commit af98ccf4dd5dcb1b904ec32b9bd1521e6bf7dda5.
* r300g: use CS_OUT_TABLE betterMatt Turner2010-04-261-13/+3
| | | | | | Reviewed-by: Corbin Simpson <[email protected]> Signed-off-by: Matt Turner <[email protected]> Signed-off-by: Marek Olšák <[email protected]>
* svga: Pass-through max_index to translate.José Fonseca2010-04-261-1/+1
|
* r300g: Rudimentary stats, printed on exit.Corbin Simpson2010-04-264-0/+22
| | | | Whoo!
* r300g: Add stats debug flag.Corbin Simpson2010-04-262-0/+2
|
* r300g: Use table CS writing when applicable.Corbin Simpson2010-04-261-35/+13
| | | | I just broke the 2000 fps barrier on glxgears. Yay?
* r300g: Add CS table writing.Corbin Simpson2010-04-262-0/+11
|
* nvfx: Add include path to SCons build.Vinson Lee2010-04-251-0/+4
|
* r300g: support index bias on r500 and DRM 2.3.0Marek Olšák2010-04-261-13/+40
|
* r300g: support rendering more than 65535 vertices in one batch on r500Marek Olšák2010-04-261-21/+4
| | | | and disable batch splitting on these chipsets.
* r300g: emit MSPOS regsMarek Olšák2010-04-263-9/+11
|
* r300g: force prefetch for non-indexed verticesMarek Olšák2010-04-264-8/+8
|
* r300g: use the dummy FS shader for shaders with zero instructionsMarek Olšák2010-04-261-0/+8
|
* r300g: allow unaligned vertex formats if the stride is dword-alignedMarek Olšák2010-04-262-7/+43
|
* r300g: abort on unsupported vertex formatsMarek Olšák2010-04-261-0/+4
|
* r300g: abort if a vertex buffer offset is not dword-alignedMarek Olšák2010-04-261-0/+9
|
* nvfx: Add missing header.Vinson Lee2010-04-251-0/+1
|
* llvmpipe: No need to flush the caches for buffers.José Fonseca2010-04-252-12/+14
|
* softpipe: Make softpipe transfers in-order.José Fonseca2010-04-255-4/+109
| | | | | | | | | | | Transfer, being now a context operation, should happen in order with all other contexts operations. If there is rendering pending on the resource then the driver must flush and potentially wait itself internally. Instead of avoiding using transfers internally (as done in llvmpipe) I've opted to simply pass PIPE_TRANSFER_UNSYNCHRONIZED in all internal transfers, to avoid infinite recursion.
* llvmpipe: Cleanup/improve llvmpipe_flush_resource usage.José Fonseca2010-04-254-36/+48
| | | | Recognize PIPE_TRANSFER_UNSYNCHRONIZED and PIPE_TRANSFER_DONTBLOCK.
* llvmpipe: Remove unused variable.Vinson Lee2010-04-251-2/+0
|
* llvmpipe: llvmpipe_flush_texture -> llvmpipe_flush_resourceJosé Fonseca2010-04-254-15/+12
|
* llvmpipe: Fix buffer overflow unswizzling several formats.José Fonseca2010-04-251-1/+1
| | | | | Array formats without for channels were being advanced as four channels, causing buffer overflows.
* softpipe: Hardcode TILE_CLEAR_OPTIMIZATION to 1.José Fonseca2010-04-253-20/+1
| | | | | The un-optimized path relies on surface_fill which can only handle formats with depth <= 32, so it is pointless to keep it around.
* llvmpipe: Replace tile_read/write with more descriptive swizzle/unswizzle verbs.José Fonseca2010-04-254-24/+36
|
* llvmpipe: Cleanup llvmpipe_is_format_supported().José Fonseca2010-04-251-20/+19
| | | | It should be just cosmetic.
* softpipe: More accurate softpipe_is_format_supported().José Fonseca2010-04-251-19/+55
| | | | | Unfortunately there are some heavy limitations on supported render target formats due to the way clear values are used internally.
* llvmpipe: Remove sp2lp.sh.José Fonseca2010-04-251-34/+0
| | | | Irrelevant now that llvmpipe and softpipe grew so far apart.
* llvmpipe: lp_tex_sample_llvm.c -> lp_tex_sample.cJosé Fonseca2010-04-253-2/+2
| | | | 'llvm' suffix unnecessary now that the C sampling version disappeared.
* nvfx: Add to SCons build.Vinson Lee2010-04-241-0/+36
|
* nv50: Add to SCons build.Vinson Lee2010-04-241-0/+26
|
* llvmpipe: Remove unused variable.Vinson Lee2010-04-241-2/+0
|