Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-05 | tgsi: make dumping work on non-debug builds | Marek Olšák | |
2010-05-04 | draw: Remove unnecessary header. | Vinson Lee | |
2010-05-04 | util: Remove unnecessary headers. | Vinson Lee | |
2010-05-05 | draw: Preserve the provoking vertex both when decomposing and clipping. | José Fonseca | |
Based on John Lawless' feedback. | |||
2010-05-05 | draw: Adjust wideline vertex coords for D3D. | Brian Paul | |
2010-05-04 | gallium/util: added is_format_compressed() | Brian Paul | |
2010-05-04 | u_blitter: fix creating fragment shaders | Wiktor Janas | |
See FDO bug #27887. Signed-off-by: Marek Olšák <maraeo@gmail.com> | |||
2010-05-04 | gallivm: Proper implementation of TXL opcode. | José Fonseca | |
2010-05-04 | gallivm: Fix several glitches introduced in the prev commit. | José Fonseca | |
2010-05-04 | gallivm: Implement TXD. | José Fonseca | |
2010-05-03 | gallium: move surface utility functions into u_surface.c | Brian Paul | |
This is a better place than in u_rect.c | |||
2010-05-04 | gallivm: Increase the TGSI translation limits and centralize them in a header. | José Fonseca | |
2010-05-04 | gallicm: Newton-Raphson step to improve precision. | José Fonseca | |
Disabled as it doesn't make VS/PSPrecision DCT happy, and it would unnecessarily slow some cases where it is not needed. | |||
2010-05-03 | cso: use framebuffer utility functions | Brian Paul | |
2010-05-03 | gallium: move framebuffer utility functions into a new file | Brian Paul | |
2010-05-03 | util: add util_format_short_name | Marek Olšák | |
2010-05-03 | util: add util_format_is_plain | Marek Olšák | |
2010-05-03 | Reorder LLVM passes, running mem2reg earlier. | Török Edwin | |
This gives a ~30% shader optimization time improvement on blender. Tested by comparing the dumped LLVM modules. Current ordering: time ~/llvm-git/obj/Release-Asserts/bin/opt l.bc -constprop -instcombine -mem2reg -gvn -simplifycfg real 0m1.126s user 0m1.108s sys 0m0.012s With this patch: time ~/llvm-git/obj/Release-Asserts/bin/opt l.bc -mem2reg -constprop -instcombine -gvn -simplifycfg real 0m0.885s user 0m0.880s sys 0m0.000s The overall improvement in blender is ~15%. Blender without the patch takes 1m13s: edwin 5934 87.6 11.5 729440 458296 pts/5 SLl+ 17:35 1:13 blender Blender with the patch takes 1m3s: edwin 5726 94.2 11.2 716424 446168 pts/5 SLl+ 17:32 1:03 blender It is still slow with the patch, but better (most of the optimization time is taken up by GVN, see LLVM PR7023). Signed-off-by: Török Edwin <edwintorok@gmail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-05-03 | gallivm: Display message instead of crashing when sampler generator was not ↵ | José Fonseca | |
supplied for tgsi translation. | |||
2010-05-03 | translate: Make translate_generic truly generic. | José Fonseca | |
PIPE_FORMAT_R10G10B10X2_USCALED, half floats, were not supported, so just rely on u_format for (almost) universal format support. | |||
2010-05-03 | draw: Remove draw_pt_fetch_prepare call from llvm middle end. | José Fonseca | |
Unneeded since we code generate the vertex fecthes. | |||
2010-05-03 | tgsi: Parse and dump predicates. | José Fonseca | |
2010-05-03 | gallium: Remove loop register file. | José Fonseca | |
It was only used for D3D's REP/END/BGNFOR/ENDFOR. D3D's aL register is just like another address register now. | |||
2010-05-03 | gallivm: Replace predicate assertion failure with warning message. | José Fonseca | |
2010-05-03 | draw: Disable rtasm compilation when using LLVM. | José Fonseca | |
Saves time and trouble. | |||
2010-05-02 | gallivm: fix nested break and continue statements | Zack Rusin | |
we were resetting the mask on each new break/continue statement within the same scope. we always need to and the current execution mask with the current break/continue mask to get the correct result (the masks are always ~1 initially) | |||
2010-05-03 | gallium/util: print \n after DXTn printf | Luca Barbieri | |
Re-add commit 2d65a7caf97684aa654088c76a74b632fbd685fa Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-04-30 | llvmpipe: fix out-of-bounds texture sampling | Brian Paul | |
If we're using a wrap mode in which border color sampling is possible it means that texcoords may be outside of the texture image bounds. Fetching the texel may result in a segfault. Use the 'use_border' variable to catch such texcoords and replace the texel offset with zero (which will be in bounds). Fixes segfault in Lightsmark demo, fd.o bug 27877. | |||
2010-04-30 | llvmpipe: added lp_build_sample_nop() for debugging | Brian Paul | |
2010-04-30 | draw: Fix memory leaks in llvm code. | José Fonseca | |
2010-04-30 | util: Add missing break statement in u_caps.c | Jakob Bornecrantz | |
Thanks Vinson. | |||
2010-04-29 | util: Update caps after helpfull input | Jakob Bornecrantz | |
In no particular order: * Make list const * Add function comments * Clearly state that demo lists are not complete * Fix whitespace * Use __FUNCTION__ instead of __func__ * Add unimplemented check which always fail Thanks Brian and Keith. | |||
2010-04-29 | util: Add small caps checker helper | Jakob Bornecrantz | |
2010-04-29 | util: Format error format string as the rest of the pipe formats | Jakob Bornecrantz | |
2010-04-29 | draw llvm: stay in bounds even if fetch_count % 4 != 0 | Zack Rusin | |
if fetch_count % 4 != 0 then on the last iteration we fetch garbage. this patch makes sure we stay within bounds | |||
2010-04-29 | cso: remove commented-out code, update function docs | Brian Paul | |
2010-04-29 | gallivm: add some assertions in special-case sampler code | Brian Paul | |
2010-04-29 | gallium/draw: Fix PPC compiler warning. | Michel Dänzer | |
2010-04-29 | gallium/draw: Fix PPC build failure. | Michel Dänzer | |
2010-04-28 | draw: remove extra semicolons | Brian Paul | |
2010-04-28 | draw: use a cast wrapper | Brian Paul | |
2010-04-28 | draw: put 'create' in the vs varient create function names | Brian Paul | |
2010-04-28 | draw: add missing function parameter | Brian Paul | |
2010-04-28 | gallium/util: convert //-style comments | Brian Paul | |
2010-04-28 | gallium/util: convert //-style comments | Brian Paul | |
2010-04-27 | tgsi: Drop BGNFOR, ENDFOR, REP, and ENDREP opcodes. | José Fonseca | |
2010-04-27 | gallivm: Drop BGNFOR, ENDFOR, REP, and ENDREP opcodes. | José Fonseca | |
2010-04-27 | util: fix assorted problems in the image packing functions | Brian Paul | |
2010-04-27 | gallivm: Disable llvm.cos.v4f32 and llvm.sin.v4f32 instrinsics on Windows. | José Fonseca | |
Runtime linking doesn't quite work. Just comment then out for now to prevent crashes. These will go away in the future because calling 4 times CRT's cosf()/sinf() is over-precise and under-performing. | |||
2010-04-27 | gallivm: Ensure all allocas are in the first block. | José Fonseca | |
Refactor the code to make this easier. |