summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys
Commit message (Collapse)AuthorAgeFilesLines
* r600g: add winsys support for CTL constants.Dave Airlie2010-10-013-0/+22
| | | | | These need to be emitted, we also need them to do proper vtx start, instead of abusing index offset.
* r600g: use Elements macro instead of manual sizeofsDave Airlie2010-10-012-10/+12
|
* r600g: keep a mapping around for each boJohn Doe2010-09-302-51/+54
| | | | | | Save a lot of call into the kernel and thus improve performances. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: don't double count dirty blockJohn Doe2010-09-303-26/+42
| | | | | | | This avoid to overcount the number of dwords we need and thus avoid maximazation of cs buffer use. Signed-off-by: Jerome Glisse <[email protected]
* evergreeng: avoid overlapping border color btw VS & PSJerome Glisse2010-09-301-2/+2
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: use constant buffer instead of register for constantJerome Glisse2010-09-302-29/+10
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* gallium/winsys: remove duplicated includeNicolas Kaiser2010-09-301-1/+0
| | | | | | Remove duplicated include. Signed-off-by: Brian Paul <[email protected]>
* r600g: clean up some code from move to new paths.Dave Airlie2010-09-302-9/+2
| | | | mainly remove 2 suffix from function names
* r600g: Fix SCons build.Vinson Lee2010-09-291-5/+5
|
* r600g: more cleanupJerome Glisse2010-09-294-6/+30
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: Update SConscript.Vinson Lee2010-09-291-6/+6
| | | | Fixes SCons build.
* r600g: cleanupJerome Glisse2010-09-299-190/+100
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: delete old pathJerome Glisse2010-09-2911-2557/+153
| | | | | | Lot of clean can now happen. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: use a hash table instead of groupJerome Glisse2010-09-294-1028/+1001
| | | | | | | | Instead of creating group of register use a hash table to lookup into which block each register belongs. This simplify code a bit. Signed-off-by: Jerome Glisse <[email protected]
* r600g: move radeon.h members around to add back map flushing.Dave Airlie2010-09-293-4/+8
|
* r600g: suspend/resume occlusion query around clear/copyJerome Glisse2010-09-281-5/+2
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix occlusion query after change to block structureJerome Glisse2010-09-271-3/+3
| | | | | | | block->reg point to register value not block->pm4 which point to packet. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix pointsprite & resource unbindingJerome Glisse2010-09-272-14/+40
| | | | | | | | | | When asking to bind NULL resource assume it's unbinding so free resource and unreference assoicated buffer. Also fix pointsprite parameter. Fix glsl-fs-pointcoord & fp-fragment-position Signed-off-by: Jerome Glisse <[email protected]>
* r600g: build packet header onceJerome Glisse2010-09-272-85/+160
| | | | | | | | Build packet header once and allow to add fake register support so we can handle things like indexed set of register (evergreen sampler border registers for instance. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: add evergreen texture resource properly.Dave Airlie2010-09-271-3/+109
| | | | adding sampler border looks impossible with current design, another day, another corner case not worked out.
* radeong: fix leaksJoakim Sindholt2010-09-261-0/+3
|
* r600g: disable early cull optimization when occlusion query runningJerome Glisse2010-09-264-0/+60
| | | | | | | | | | When occlusion query are running we want to have accurate fragment count thus disable any early culling optimization GPU has. Based on work from Bas Nieuwenhuizen <[email protected]> Signed-off-by: Jerome Glisse <[email protected]>
* r600g: Include p_compiler.h instead of malloc.h.Vinson Lee2010-09-261-1/+1
|
* r600g: Remove unused variables.Vinson Lee2010-09-261-1/+1
| | | | | | | | | Fixes these GCC warnings. radeon.c: In function 'radeon_new': radeon.c:59: warning: unused variable 'k' radeon.c:59: warning: unused variable 'j' radeon.c:59: warning: unused variable 'id' radeon.c:59: warning: unused variable 'i'
* r600g: Don't return a value in function returning void.Vinson Lee2010-09-261-1/+1
| | | | | | Fixes this GCC warning. radeon_state.c: In function 'radeon_state_fini': radeon_state.c:140: warning: 'return' with a value, in function returning void
* r600g: Remove unused variable.Vinson Lee2010-09-251-1/+0
| | | | | | Fixes this GCC warning. radeon_bo_pb.c: In function 'radeon_bo_pb_create_buffer': radeon_bo_pb.c:178: warning: unused variable 'domain'
* r600g: add eg db count control register.Dave Airlie2010-09-251-0/+1
|
* r600g: bring over fix from old path to new pathJerome Glisse2010-09-241-10/+39
| | | | | | | | | | Up to 2010-09-19: r600g: fix tiling support for ddx supplied buffers 9b146eae2521d8e5f6d3cbefa4f6f7737666313a user buffer seems to be broken... new to fix that. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix evergreen new pathJerome Glisse2010-09-241-3/+10
| | | | | | glxgears seems to work, had somelockup but now they seems to have vanish. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix evergreen new pathJerome Glisse2010-09-242-13/+15
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: evergreen fix for new designJerome Glisse2010-09-243-40/+23
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: move use_mem_constants flags for new designs structure alignmentJerome Glisse2010-09-241-1/+1
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix typo in evergreen define (resource are in [0x30000;0x34000] range)Jerome Glisse2010-09-241-1/+1
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r300g: make accessing map_list and buffer_handles thread-safeMarek Olšák2010-09-241-6/+58
| | | | NOTE: This is a candidate for the 7.9 branch.
* r300g: fixup long-lived BO maps being incorrectly unmapped when flushingMarek Olšák2010-09-241-4/+10
| | | | | | Based on commit 3ddc714b20ac4e28b80c6f88d1993445fff2262c by Dave Airlie. NOTE: This is a candidate for the 7.9 branch.
* r600g: initial evergreen support in new pathJerome Glisse2010-09-233-11/+707
| | | | | | This doesn't work yet. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix typo in evergreen register listDave Airlie2010-09-231-1/+1
| | | | pointed out by glisse on irc.
* r600g: disable shader rebuild optimization & account cb flush packetJerome Glisse2010-09-221-1/+9
| | | | | | | | | Shader rebuild should be more clever, we should store along each shader all the value that change shader program rather than using flags in context (ie change sequence like : change vs buffer, draw, change vs buffer, switch shader will trigger useless shader rebuild). Signed-off-by: Jerome Glisse <[email protected]>
* r600g: flush color buffer after draw commandJerome Glisse2010-09-221-1/+36
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* winsys: automatically build sw winsys needed by EGL and d3d1xLuca Barbieri2010-09-221-0/+10
| | | | A cleaner solution would be preferable, but this does no harm and works.
* r600g: occlusion query for new designJerome Glisse2010-09-212-5/+153
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: directly allocate bo for user bufferJerome Glisse2010-09-212-24/+27
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: fix eg texture borders.Dave Airlie2010-09-212-13/+16
| | | | texture border regs are indexed on evergreen.
* r600g: add back reference check when mapping bufferJerome Glisse2010-09-201-6/+7
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* r600g: use pipe context for flushing inside mapJerome Glisse2010-09-201-7/+7
| | | | | | | | | This allow to share code path btw old & new, also remove check on reference this might make things a little slower but new design doesn't use reference stuff. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: move chip class to radeon common structureJerome Glisse2010-09-204-0/+74
| | | | | | | So texture code can be shared btw new state design & old one. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: only flush for the correct colorbuffer, not all of them.Dave Airlie2010-09-201-2/+4
|
* r600g: fixup r700 CB_SHADER_CONTROL register.Dave Airlie2010-09-201-1/+1
| | | | r600c emits this with a mask of each written output.
* r600g: fix tiling support for ddx supplied buffersDave Airlie2010-09-201-9/+9
| | | | needed to emit some more relocs to the kernel.
* r600g: send correct surface base update for multi-cbufsDave Airlie2010-09-201-2/+4
|