summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw
AgeCommit message (Collapse)Author
2008-04-23gallium: fix comments, whitespace changesBrian Paul
2008-04-23gallium: passthrough tri, not pointBrian Paul
2008-04-23Add translate cache to fetch_emit stage and add out of memoryZack Rusin
checks to code creating the cache.
2008-04-23Create a sharable translate_cache and use it.Zack Rusin
2008-04-23gallium: additional debug codeBrian Paul
2008-04-23fix the simple hash finding function and use itZack Rusin
2008-04-23gallium: fix broken hashing for vertex translationBrian Paul
It seems we get hash collisions fairly easily and the code as it was didn't deal with that properly. I think we need a simpler hashing interface...
2008-04-23draw: remove stupid debug (Keith)Keith Whitwell
2008-04-23draw: add missing break (Jakob)Keith Whitwell
2008-04-22gallium: added a flushing_vcache flag, test in draw_do_flush()Brian Paul
Fixes broken polygon stipple, aaline, aapoint stages
2008-04-22gallium: fix bad logic in bind_pstip_fragment_shader(): use &&, not ||Brian Paul
2008-04-22Fix a crash. Rasterizer can be nullZack Rusin
2008-04-22Cache translate's structs for emits and fetches.Zack Rusin
Results in a fair speed improvement.
2008-04-22Fix reporting of clipped vertices.Zack Rusin
2008-04-22draw: allow drivers to query pipeline state more easilyKeith Whitwell
Also, provide a separate flag to say whether the driver can handle clipping/rhw tasks, in addition to the API flag which indicates they have already been done.
2008-04-22draw: disable broken edgeflag code - didn't work & was killing performanceKeith Whitwell
2008-04-21draw: squash a couple of memory leaksKeith Whitwell
2008-04-21actually write the resultsZack Rusin
2008-04-21draw: more propogation -- pstipple stage.Keith Whitwell
2008-04-21draw: propogate lots of errorsKeith Whitwell
2008-04-21draw: propogate errors out of aapoint stageKeith Whitwell
2008-04-21draw: propogate errors out of aaline stageKeith Whitwell
2008-04-21draw: consolidate all the passthrough line/tri/point funcsKeith Whitwell
2008-04-21make llvm draw paths compile with the latest changesZack Rusin
switch the method of distribution of builtins (to get rid of the llvm2cpp dependency)
2008-04-21gallium: Centralize SSE usage logic.José Fonseca
2008-04-19draw: rearrange debug codeKeith Whitwell
2008-04-19draw: add missing translate->set_buffer for fetch emit pathKeith Whitwell
2008-04-19draw: fix scons buildKeith Whitwell
2008-04-19draw: move incoming vertex state into draw->ptKeith Whitwell
This state is effectively private to the vertex processing part of the draw module.
2008-04-19draw: make draw_reset_vertex_ids private to the draw_pipe_* codeKeith Whitwell
2008-04-19draw: make room for extra_vs_outputsKeith Whitwell
2008-04-19draw: put pipeline flushing behind a new interfaceKeith Whitwell
2008-04-19draw: move pt_pipeline code to draw_pipe.cKeith Whitwell
This is now the drawing interface to the pipeline. No more calling into pipeline.first->tri(), etc.
2008-04-19draw: always emit header in draw_pt_fetch.cKeith Whitwell
2008-04-19draw: move some pipeline-specific code & state to draw_pipe.[ch]Keith Whitwell
2008-04-19draw: remove dead file pipe_wide_prims.cKeith Whitwell
2008-04-19draw: remove named clipmask flags, tidy up pt middle endsKeith Whitwell
2008-04-19draw: remove dead codeKeith Whitwell
2008-04-19draw: rename pipeline files to draw_pipe_*Keith Whitwell
2008-04-19draw: sort makefile sourcesKeith Whitwell
2008-04-19draw: rename draw_vertex_shader.c -> draw_vs.cKeith Whitwell
2008-04-19draw: remove draw_debug.cKeith Whitwell
2008-04-19draw: make draw_pt_fetch_emit use translate facilityKeith Whitwell
2008-04-19draw: remove more dead data structuresKeith Whitwell
2008-04-19draw: remove dead data structuresKeith Whitwell
2008-04-18draw: remove draw_vertex_fetch.cKeith Whitwell
2008-04-18draw: remove old draw_vertex_shader_queue_flush functionKeith Whitwell
2008-04-18draw: remove old vertex_shader->run() functionsKeith Whitwell
2008-04-18draw: remove draw_vertex_cache.cKeith Whitwell
2008-04-18draw: remove draw_prim.cKeith Whitwell