Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glsl: Change from has_builtin_signature to has_user_signature. | Kenneth Graunke | 2010-09-16 | 3 | -5/+5 |
| | | | | | The print visitor needs this, and the only existing user can work with has_user_signature just as well. | ||||
* | 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. | ||||
* | mesa: Update ES APIspec.xml. | Chia-I Wu | 2010-09-16 | 1 | -9/+5 |
| | | | | | | Enable some extensions now that the needed tokens are defined in GLES/glext.h and GLES2/glext.h. Update the prototype of MultiDrawArrays now that the prototype of _mesa_MultiDrawArraysEXT has been updated. | ||||
* | 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. | ||||
* | mesa/st: Silence uninitialized variable warning. | Vinson Lee | 2010-09-15 | 1 | -1/+4 |
| | |||||
* | 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 |
| | |||||
* | glsl2: fix signed/unsigned comparison warning | Brian Paul | 2010-09-15 | 1 | -2/+2 |
| | |||||
* | 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 |
| | | |||||
| * | nv50: fix TXP depth comparison value | Christoph Bumiller | 2010-09-13 | 1 | -16/+22 |
| | | |||||
| * | nv50: fix indirect CONST access with large or negative offsets | Christoph Bumiller | 2010-09-13 | 2 | -3/+12 |
| | | |||||
| * | nv50: MOV TEMP[0], -CONST[0] must be float32 negation | Christoph Bumiller | 2010-09-13 | 1 | -2/+7 |
| | | |||||
| * | nv50: interp cannot write flags reg | Christoph Bumiller | 2010-09-13 | 3 | -7/+25 |
| | | |||||
| * | nv50: check for immediates when turning MUL ADD into MAD | Christoph Bumiller | 2010-09-13 | 1 | -0/+9 |
| | | |||||
| * | nv50: handle TGSI EXP and LOG again | Christoph Bumiller | 2010-09-13 | 2 | -3/+47 |
| | | |||||
| * | nv50: match TEMP limit with nv50 ir builder | Christoph Bumiller | 2010-09-12 | 1 | -1/+1 |
| | | | | | | | | | | Mesa doesn't respect it anyway, but this makes it assert rather than threads access areas of l[] that don't belong to them. | ||||
| * | nv50: newlines in shader bincode printing | Christoph Bumiller | 2010-09-12 | 1 | -2/+5 |
| | | |||||
| * | nv50: cannot move from local mem to output reg directly | Christoph Bumiller | 2010-09-12 | 3 | -3/+5 |
| | | |||||
| * | nv50: fix size of outputs_written array | Xavier Chantry | 2010-09-12 | 1 | -1/+1 |
| | | |||||
| * | nv50: minor compiler fixes and cleanups | Christoph Bumiller | 2010-09-12 | 4 | -8/+19 |
| | | |||||
| * | nv50: reduce bb_reachable_by runtime from pot to linear | Christoph Bumiller | 2010-09-12 | 3 | -21/+104 |
| | | | | | | | | As a by-product, remove the memory leak of nv_basic_blocks. | ||||
| * | nv50: fix can_load check for 3rd source | Christoph Bumiller | 2010-09-09 | 1 | -7/+5 |
| | | |||||
| * | nv50: address regs are 16 bit | Christoph Bumiller | 2010-09-09 | 2 | -1/+5 |
| | | |||||
| * | nv50: duplicate interps in load_proj_tex_coords | Christoph Bumiller | 2010-09-09 | 1 | -4/+35 |
| | | | | | | | | | | Otherwise we might clobber the origin interpolation result or use the result of the RCP before its definition. | ||||
| * | nv50: create value references with the right type | Christoph Bumiller | 2010-09-09 | 2 | -26/+29 |
| | | | | | | | | | | | | | | | | | | Since atm our OPs aren't typed but instead values are, we need to take care if they're used as different types (e.g. a load makes a value u32 by default). Maybe this should be changed (also to match TGSI), but it should work as well if done properly. | ||||
| * | nv50: use actual loads/stores if TEMPs are accessed indirectly | Christoph Bumiller | 2010-09-09 | 10 | -23/+122 |
| | | |||||
| * | nv50: don't parse again in tgsi_2_nc | Christoph Bumiller | 2010-09-09 | 1 | -15/+3 |
| | | |||||
| * | nv50: prepare for having multiple functions | Christoph Bumiller | 2010-09-09 | 8 | -52/+171 |
| | | | | | | | | | | | | | | | | | | At some point we'll want to support real subroutines instead of just inlining them into the main shader. Since recursive calls are forbidden, we can just save all used registers to a fixed local memory region and restore them on a return, no need for a stack pointer. |