Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | r600g: add upload manager support. | Dave Airlie | 2010-09-17 | 6 | -47/+223 |
| | | | | | | this add support for the upload manager for uploading user vbo/index buffers. this provides a considerable speedup in q3 type games. | ||||
* | r600g: add winsys bo caching. | Dave Airlie | 2010-09-17 | 4 | -31/+24 |
| | | | | | | | this adds the bo caching layer and uses it for vertex/index/constant bos. ctx needs to take references on hw bos so the flushing works okay, also needs to flush the maps. | ||||
* | r600g: add support for kernel bo | Dave Airlie | 2010-09-17 | 10 | -50/+352 |
| | | | | this moves to using a pb bufmgr instead of kernel bos directly. | ||||
* | r600g: use malloc bufmgr for constant buffers | Dave Airlie | 2010-09-17 | 3 | -1/+9 |
| | |||||
* | r600g: move constant buffer creation behind winsys abstraction. | Dave Airlie | 2010-09-17 | 12 | -55/+65 |
| | | | | this paves the way for moving to pb bufmgrs now. | ||||
* | libgl-xlib: Remove unused st_api_create_OpenGL. | Chia-I Wu | 2010-09-17 | 1 | -8/+0 |
| | | | | st/egl no longer relies on libGL for OpenGL support. | ||||
* | targets/egl: Use C++ compiler to link GL/ES state trackers. | Chia-I Wu | 2010-09-17 | 1 | -3/+10 |
| | | | | | Otherwise, applications compiled with C compiler might have trouble using them. | ||||
* | tgsi/sse: fix aos_to_soa() loop to handle num_inputs==0 | Brian Paul | 2010-09-16 | 1 | -6/+9 |
| | | | | | | | | | Basically, change the loop from: do {...} while (--num_inputs != 0) into: while (num_inputs != 0) { ... --num_inputs; } Fixes fd.o bug 29987. | ||||
* | r600g: attempt to abstract kernel bos from pipe driver. | Dave Airlie | 2010-09-17 | 19 | -199/+272 |
| | | | | | | introduce an abstraction layer between kernel bos and the winsys BOs. this is to allow plugging in pb manager with minimal disruption to pipe driver. | ||||
* | r600g: hide radeon_ctx inside winsys. | Dave Airlie | 2010-09-17 | 8 | -56/+42 |
| | | | | no need for this info to be exported to pipe driver. | ||||
* | gallivm: Remove unnecessary header. | Vinson Lee | 2010-09-16 | 1 | -1/+0 |
| | |||||
* | gallivm: fix wrong return value in bitwise functions | Brian Paul | 2010-09-16 | 1 | -3/+3 |
| | |||||
* | gallivm: Clamp indirect register indices to file_max. | José Fonseca | 2010-09-16 | 1 | -60/+71 |
| | | | | Prevents crashes with bogus data, or bad shader translation. | ||||
* | gallivm: Start collecting bitwise arithmetic helpers in a new module. | José Fonseca | 2010-09-16 | 8 | -32/+263 |
| | |||||
* | gallivm: Fix address register swizzle. | José Fonseca | 2010-09-16 | 1 | -2/+1 |
| | | | | | | | | | | We're actually doing a double swizzling: indirect_reg->Swizzle[indirect_reg->SwizzleX] instead of simply indirect_reg->SwizzleX | ||||
* | r300g/swtcl: fix CS overrun | Marek Olšák | 2010-09-16 | 2 | -8/+28 |
| | | | | https://bugs.freedesktop.org/show_bug.cgi?id=29901 | ||||
* | llvmpipe: add DEBUG_FS to dump variant information | Keith Whitwell | 2010-09-16 | 3 | -1/+3 |
| | |||||
* | llvmpipe: add LP_PERF flag to disable various aspects of rasterization | Keith Whitwell | 2010-09-16 | 8 | -6/+90 |
| | | | | | | | | Allows disabling various operations (mainly texture-related, but will grow) to try & identify bottlenecks. Unlike LP_DEBUG, this is active even in release builds - which is necessary for performance investigation. | ||||
* | gallivm: make lp_build_sample_nop public | Keith Whitwell | 2010-09-16 | 2 | -6/+8 |
| | |||||
* | gallivm: move i32_vec_type inside the #ifdef | Brian Paul | 2010-09-16 | 1 | -1/+2 |
| | |||||
* | gallivm: fix incorrect vector shuffle datatype | Brian Paul | 2010-09-16 | 1 | -1/+5 |
| | | | | The permutation vector must always be a vector of int32 values. | ||||
* | nv50: get shader fixups/relocations into working state | Christoph Bumiller | 2010-09-16 | 4 | -54/+79 |
| | |||||
* | nv50: don't segfault on shaders with 0 instructions | Christoph Bumiller | 2010-09-16 | 1 | -1/+3 |
| | |||||
* | r600g: Use clamped math for RCP and RSQ. | Tilman Sauerbeck | 2010-09-16 | 1 | -2/+14 |
| | | | | | | This is likely only correct for OpenGL and not other state trackers. Signed-off-by: Tilman Sauerbeck <[email protected]> | ||||
* | r600g: Fixed a bo leak in r600_blit_state_ps_shader(). | Tilman Sauerbeck | 2010-09-16 | 1 | -1/+1 |
| | | | | | | We would leak the newly created bo if it cannot be mapped. Signed-off-by: Tilman Sauerbeck <[email protected]> | ||||
* | st/xlib: Notify the context when the front/back buffers are swapped. | Chia-I Wu | 2010-09-16 | 3 | -4/+21 |
| | | | | | | | | The current context should be notified when the the front/back buffers of the current drawable are swapped. The notification was skipped when xmesa_strict_invalidate is false (the default). This fixes fdo bug #29774. | ||||
* | r600g: fix texture bos and avoid doing depth blit on evergreen | Dave Airlie | 2010-09-16 | 2 | -11/+4 |
| | | | | since the depth blit code is hardcoded hex yay \o/ | ||||
* | r600g: fixup texture state on evergreen. | Dave Airlie | 2010-09-16 | 4 | -143/+317 |
| | | | | This whole set of state just seems wrong, another cut-n-paste nightmare. | ||||
* | nv50: Fix 'control reaches end of non-void function' warning. | Vinson Lee | 2010-09-15 | 1 | -0/+1 |
| | |||||
* | nv50: Silence uninitialized variable warnings. | Vinson Lee | 2010-09-15 | 1 | -1/+2 |
| | |||||
* | draw: Remove unnecessary header. | Vinson Lee | 2010-09-15 | 1 | -1/+0 |
| | |||||
* | gallivm: Remove unnecessary headers. | Vinson Lee | 2010-09-15 | 1 | -2/+0 |
| | |||||
* | nv50: Silence uninitialized variable warning. | Vinson Lee | 2010-09-15 | 1 | -1/+2 |
| | |||||
* | nv50: Silence uninitialized variable warning. | Vinson Lee | 2010-09-15 | 1 | -1/+1 |
| | |||||
* | nv50: Silence uninitialized variable warning. | Vinson Lee | 2010-09-15 | 1 | -0/+1 |
| | |||||
* | nv50: Remove unnecessary headers. | Vinson Lee | 2010-09-15 | 2 | -2/+0 |
| | |||||
* | nv50: Update files in SConscript to match Makefile. | Vinson Lee | 2010-09-15 | 1 | -1/+8 |
| | |||||
* | r600g: add vgt dma src defines | Dave Airlie | 2010-09-16 | 2 | -3/+5 |
| | |||||
* | r600g: use index min/max + index buffer offset. | Dave Airlie | 2010-09-16 | 4 | -5/+14 |
| | | | | more prep work for fixing up buffer handling | ||||
* | r600g: pull r600_draw struct out into header | Dave Airlie | 2010-09-16 | 4 | -72/+73 |
| | | | | we need this for future buffer rework, it also makes the vtbl easier | ||||
* | gallivm: expand AoS sampling to cover all filtering modes | Brian Paul | 2010-09-15 | 7 | -1029/+1919 |
| | | | | ...and all texture targets (1D/2D/3D/CUBE). | ||||
* | tgsi: fix incorrect usage_mask for shadow tex instructions | Brian Paul | 2010-09-15 | 1 | -5/+6 |
| | | | | | | The shadow versions of the texture targets use an extra component (Z) to express distance from light source to the fragment. Fixes the shadowtex demo with llvmpipe. | ||||
* | nv50: use unsigned int for bitfields to silence warnings | Brian Paul | 2010-09-15 | 2 | -16/+16 |
| | |||||
* | llvmpipe: s/boolean/unsigned/ in bitfield to silence warning | Brian Paul | 2010-09-15 | 1 | -2/+2 |
| | | | | | Using non-int types for bitfields is a gcc extension. The size of the struct is not effected by this change. | ||||
* | llvmpipe: cast to silence warning | Brian Paul | 2010-09-15 | 1 | -1/+1 |
| | |||||
* | r600g: misc cleanup | John Doe | 2010-09-15 | 7 | -46/+47 |
| | | | | | | | Avoid using r600_screen structure to get ptr to radeon winsys structure. Signed-off-by: Jerome Glisse <[email protected]> | ||||
* | Merge remote branch 'origin/nv50-compiler' | Christoph Bumiller | 2010-09-15 | 23 | -5020/+9082 |
|\ | | | | | | | | | | | Conflicts: src/gallium/drivers/nouveau/nouveau_class.h src/gallium/drivers/nv50/nv50_screen.c | ||||
| * | nv50: put low limit on REG_ALLOC_TEMP and FP_RESULT_COUNT | Christoph Bumiller | 2010-09-15 | 2 | -2/+5 |
| | | |||||
| * | nv50: improve and fix modifier folding optimization | Christoph Bumiller | 2010-09-15 | 4 | -26/+46 |
| | | | | | | | | | | | | | | Execute before folding loads, because we don't check if it's legal in lower_mods. Ensure that a value's insn pointer is updated when transferring it to a different instruction. | ||||
| * | nv50: consider address register in reload elimination | Christoph Bumiller | 2010-09-15 | 1 | -7/+11 |
| | |