summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into pipe-videoThomas Balling Sørensen2010-10-0567-905/+7879
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configs/linux-dri configure.ac src/gallium/drivers/nvfx/Makefile src/gallium/include/pipe/p_defines.h src/gallium/include/pipe/p_screen.h src/gallium/include/state_tracker/dri1_api.h src/gallium/include/state_tracker/drm_api.h src/gallium/tests/python/samples/tri.py src/gallium/tests/trivial/Makefile src/gallium/tests/unit/Makefile src/gallium/tests/unit/SConscript src/gallium/tests/unit/u_format_test.c src/gallium/winsys/nouveau/drm/nouveau_drm_api.c
| * r600g: avoid unneeded bo waitDave Airlie2010-10-051-1/+5
| | | | | | | | | | | | if we know the bo has gone not busy, no need to add another bo wait thanks to Andre (taiu) on irc for pointing this out.
| * r600g: drop use_mem_constant.Dave Airlie2010-10-053-3/+0
| | | | | | | | since we plan on using dx10 constant buffers everywhere.
| * r600g: drop mman allocatorDave Airlie2010-10-053-8/+1
| | | | | | | | we don't use this since constant buffers are now being used on all gpus.
| * r600g: add bo busy backoff.Dave Airlie2010-10-052-0/+15
| | | | | | | | | | | | When we go to do a lot of bos in one draw like constant bufs we need to avoid bouncing off the busy ioctl, this mitigates by backing off on busy bos for a short amount of times.
| * r600g: add bo fenced list.Dave Airlie2010-10-053-0/+43
| | | | | | | | | | this just keeps a list of bos submitted together, and uses them to decide bo busy state for the whole group.
| * r600g: Fix SCons build.Vinson Lee2010-10-041-1/+1
| |
| * r600g: remove dead label & fix indentationJerome Glisse2010-10-041-11/+9
| | | | | | | | Signed-off-by: Jerome Glisse <[email protected]>
| * r600g: rename radeon_ws_bo to r600_boJerome Glisse2010-10-042-1/+1
| | | | | | | | Signed-off-by: Jerome Glisse <[email protected]>
| * r600g: use r600_bo for relocation argument, simplify codeJerome Glisse2010-10-044-19/+29
| | | | | | | | Signed-off-by: Jerome Glisse <[email protected]>
| * r600g: allow r600_bo to be a sub allocation of a big boJerome Glisse2010-10-042-4/+4
| | | | | | | | | | | | | | Add bo offset everywhere needed if r600_bo is ever a sub bo of a bigger bo. Signed-off-by: Jerome Glisse <[email protected]>
| * r600g: rename radeon_ws_bo to r600_boJerome Glisse2010-10-044-44/+44
| | | | | | | | Signed-off-by: Jerome Glisse <[email protected]>
| * r600g: TODO domain managementDave Airlie2010-10-041-2/+2
| | | | | | | | | | no wonder it was slow, the code is deliberately forcing stuff into GTT, we used to have domain management but it seems to have disappeared.
| * r600g: fix wwarning in bo_map functionDave Airlie2010-10-041-0/+1
| |
| * r600g: break out of search for reloc bo after finding it.Dave Airlie2010-10-041-0/+1
| | | | | | | | this function was taking quite a lot of pointless CPU.
| * r600g: setup basic loop consts on r600 + evergreen.Dave Airlie2010-10-012-0/+42
| | | | | | | | this sets up a single loop constant like r600c does.
| * r600g: flush SH cache on constant change on evergreenDave Airlie2010-10-011-2/+2
| |
| * r600g: fix evergreen draw-buffersDave Airlie2010-10-011-1/+1
| | | | | | | | just a typo in the register headers.
| * r600g: add cb flushing for extra buffers + depth buffer on r600/evergreenDave Airlie2010-10-012-3/+37
| |
| * r600g: sync vertex/texture cache on resources on evergreenDave Airlie2010-10-011-2/+2
| | | | | | | | | | this gets rid of lots of the instability on evergreen, which isn't surprising since it really broken not to flush caches.
| * r600g: add reloc for evergreen color attribDave Airlie2010-10-011-12/+12
| | | | | | | | we'll need this for color tiling on evergreen.
| * 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]>