Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-20 | r600g: add POW instruction | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-20 | r600g: cleanup definition, fix segfault when no valid pixel shader | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-20 | r600g: add occlusion query support | Dave Airlie | |
Signed-off-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-20 | galahad: remove incorrect comment just added | Luca Barbieri | |
2010-08-20 | nv50: use NV50TIC_0_2_TARGET_RECT | Luca Barbieri | |
2010-08-20 | galahad: check resource_create template | Luca Barbieri | |
2010-08-20 | gallium: make all checks for PIPE_TEXTURE_2D check for PIPE_TEXTURE_RECT too | Luca Barbieri | |
Searched for them with: git grep -E '[!=]=.*PIPE_TEXTURE_2D|PIPE_TEXTURE_2D.*[!=]=|case.*PIPE_TEXTURE_2D' Behavior hasn't been changed. | |||
2010-08-20 | galahad, i915g: Copy over constant buffer index check. | Corbin Simpson | |
2010-08-20 | galahad, i915g: Move over a few state asserts. | Corbin Simpson | |
2010-08-19 | galahad: Make it obvious on stderr that Galahad's active. | Corbin Simpson | |
2010-08-19 | r300g: do not use fastfill with 16-bit zbuffers | Marek Olšák | |
To my knowledge, there is no way to flush zmask and thus write the clear value. This fixes zbuffer reads, among other things. | |||
2010-08-19 | r600g: update comments about ALU src operands | Alex Deucher | |
2010-08-19 | r600g: add sin/cos | Dave Airlie | |
This pretty much ports the code from r600c, however it doesn't always seem to work quite perfectly, but I can't find anything in this code that is wrong. I'm guessing either literal input or constants aren't working always. | |||
2010-08-19 | r600g: add a chiprev type for r600/r700/evergreen instead of using family | Dave Airlie | |
2010-08-19 | r600g: add SSG, SEQ, SGT and SNE | Dave Airlie | |
2010-08-18 | r600g: add FRC, FLR, DDX and DDY | Dave Airlie | |
the first two are straight op2's and the DDX/DDY are taken from r600c. | |||
2010-08-18 | r600g: add SGE and SLE opcodes | Dave Airlie | |
fixes fp-set-01 and glsl-fs-step | |||
2010-08-18 | r600g: add TXB support | Dave Airlie | |
fixes biased texturing tests | |||
2010-08-18 | r600g: fix TXP vs TEX in shader. | Dave Airlie | |
Don't do perspective for TEX, and also copy input to a temporary for TEX also add tex opcode names | |||
2010-08-18 | r600g: add two simple tgsi opcodes. | Dave Airlie | |
makes glsl-fs-log2 and glsl1-integer division with uniform var pass | |||
2010-08-18 | r600g: fix point size | Dave Airlie | |
fixes piglit pointAtten and point-sprite tests | |||
2010-08-18 | r600g: fixup pitch alignment like r600c. | Dave Airlie | |
This still needs work, passes tex3d, fbo-scissor-bitmap, scissor-bitmap | |||
2010-08-18 | r600g: fix height calcs for miptree | Dave Airlie | |
h needs to be rounded up, this probably needs revisiting when we get to tiling etc. fixes fbo-generatemipmap-npot | |||
2010-08-18 | r600g: emit texture level offset in CB/DB setup. | Dave Airlie | |
8 more piglit tests pass, fbo-clearmipmap, fbo-copyteximage, fbo-generatemipmap, fbo-generatemipmap-nonsquare, fbo-generatemipmap-scissor, fbo-generatemipmap-viewport, gen-teximage, gen-texsubimage | |||
2010-08-17 | r600g: fix fake pixel output | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-17 | r300g: fix context destroy under hyperz | Dave Airlie | |
we were destroying the mm before unrefing all the objects, so segfault. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-08-17 | r600g: add user clip plane support. | Dave Airlie | |
Apart from the fact that the radeon.h/r600_states.h editing is a nightmare, this wasn't so bad. passes piglit user-clip test now also trivial tests. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-08-16 | r300g: fix assert in the rasterizer block for r3xx-r4xx | Marek Olšák | |
Reported-by: Niels Ole Salscheider <niels_ole@salscheider-online.de> | |||
2010-08-16 | r300g: fix an invalid pointer in free | Marek Olšák | |
2010-08-16 | r300g: Let hyperz init fail | nobled | |
Signed-off-by: Marek Olšák <maraeo@gmail.com> | |||
2010-08-16 | r300g: Fix leaks in failed context creation | nobled | |
This changes r300_destroy_context() so it can be called on a partially-initialized context, and uses it when r300_create_context() hits a fatal error. This makes sure r300_create_context() doesn't leak memory or neglect to call r300_update_num_contexts() when it fails. Signed-off-by: Marek Olšák <maraeo@gmail.com> | |||
2010-08-16 | r300g: Fix macro | nobled | |
This fixes a potential bug if (has_hyperz) is false (it would still init the atom as if has_hyperz were true). Signed-off-by: Marek Olšák <maraeo@gmail.com> | |||
2010-08-16 | r300/compiler: implement DP2 opcode | Marek Olšák | |
2010-08-16 | r300/compiler: implement SSG opcode | Marek Olšák | |
2010-08-15 | llvmpipe: special case triangles which fall in a single 16x16 block | Keith Whitwell | |
Check for these and route them to a dedicated handler with one fewer levels of recursive rasterization. | |||
2010-08-15 | llvmpipe: consolidate several loops in lp_rast_triangle | Keith Whitwell | |
2010-08-15 | llvmpipe: remove all traces of step arrays, pos_tables | Keith Whitwell | |
No need to calculate these values any longer, nor to store them in the bin data. Improves isosurf a bit more, 115->123 fps. | |||
2010-08-15 | llvmpipe: eliminate last usage of step array in rast_tmp.h | Keith Whitwell | |
For 16 and 64 pixel levels, calculate a mask which is linear in x and y (ie not in the swizzle layout). When iterating over full and partial masks, figure out position by manipulating the bit number set in the mask, rather than relying on postion arrays. Similarly, calculate the lower-level c values from dcdx, dcdy and the position rather than relying on the step array. | |||
2010-08-15 | llvmpipe: don't refer to plane->step when dcdx or dcdy would do | Keith Whitwell | |
2010-08-15 | llvmpipe: also use build_mask at 16, 64 pixel levels | Keith Whitwell | |
2010-08-15 | llvmpipe: version of block4 which doesn't need the full step array | Keith Whitwell | |
No noticable slowdown with isosurf. | |||
2010-08-15 | llvmpipe: reorganize block4 loop, nice speedup | Keith Whitwell | |
isosurf 95->115 fps just by exchanging the two inner loops in this function... | |||
2010-08-15 | r300g: mark HiZ/ZMask_clear atoms as non-dirty after emission in clear | Marek Olšák | |
2010-08-15 | r300g: do not use HiZ if HiZ RAM is not properly initialized | Marek Olšák | |
2010-08-15 | r300g: rename dirty_zmask -> zmask_in_use | Marek Olšák | |
2010-08-15 | r300g: do not clear with blitter if we clear just the ZMask RAM | Marek Olšák | |
This skips the blitter clear path entirely if the color is not cleared and the depth+stencil is cleared with the ZMask. | |||
2010-08-15 | r300g: do not use fastfill if ZMask RAM is not properly initialized | Marek Olšák | |
z_fastfill -> dirty_zmask[level]. | |||
2010-08-15 | r300g: separate num_cs_end_dwords out from prepare_for_rendering | Marek Olšák | |
2010-08-13 | r300g: do not support separate depth/stencil clear in the driver | Marek Olšák | |
It doesn't work well with Hyper-Z, so put the burden on the state tracker. | |||
2010-08-13 | r300g: fix fastfill when color and Z clear are invoked separately | Marek Olšák | |
This always restores the previous depth clear value after CBZB clear. |