Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-08 | Merge branch 'gallium-strict-aliasing' | Roland Scheidegger | |
2009-12-08 | move assert to avoid crash in debug build. | Alan Hourihane | |
2009-12-08 | Merge branch 'mesa_7_7_branch' | Andre Maasikas | |
Conflicts: src/mesa/drivers/dri/r600/r700_assembler.c src/mesa/main/version.h | |||
2009-12-08 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Andre Maasikas | |
2009-12-07 | llvmpipe: Initialize variables in emit_instruction. | Vinson Lee | |
2009-12-07 | gallium/util: fix util_color_[un]pack[-ub] to be strict aliasing safe | Roland Scheidegger | |
use pointer to union instead of void pointer. gcc complained a lot, depending what the pointer originally actually was. Looks like it's in fact maybe legal to cast for instance uint pointers to union pointers as long as union contains a uint type, hence use this with some callers, other just use union util_color in the first place. | |||
2009-12-05 | llvmpipe: Tweak disassembly to match gdb. | José Fonseca | |
Helps verifying udis86 output. | |||
2009-12-05 | llvmpipe: Stop disassembling when an unsupported opcode is found. | José Fonseca | |
Otherwise the terminal gets full of garbage. | |||
2009-12-04 | llvmpipe: Port vertex sampler support from softpipe. | José Fonseca | |
Just enough boilerplate code to avoid segfaulting. | |||
2009-12-04 | llvmpipe: Ensure transfers are mapped. | José Fonseca | |
This shouldn't happen but it does by some misterious reason. Fail the assertion but at least do not segfault on release builds. | |||
2009-12-04 | llvmpipe: Remove debug printf. | José Fonseca | |
2009-12-04 | Merge branch 'gallium-noblocks' | Roland Scheidegger | |
Conflicts: src/gallium/state_trackers/xorg/xorg_exa.c | |||
2009-12-02 | Revert "llvmpipe: plug in dummy pipe_context::set_vertex_sampler_textures ↵ | Brian Paul | |
function" This reverts commit 792888121b92913733daec7526c9441f27ce1231. We're instead returning 0 for the PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS query. | |||
2009-12-02 | llvmpipe: return 0 for PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS query | Brian Paul | |
The driver (and draw module) don't support vertex shader textures yet. | |||
2009-12-02 | llvmpipe: plug in dummy pipe_context::set_vertex_sampler_textures function | Brian Paul | |
Fixes immediate segfault. | |||
2009-12-02 | gallium: adapt drivers to interface cleanups | Roland Scheidegger | |
2009-12-01 | Merge commit 'origin/tgsi-simplify-ext' | Keith Whitwell | |
Conflicts: src/gallium/drivers/r300/r300_vs.c | |||
2009-12-01 | lp: Update for renamed sampler/texture state setters. | Michal Krol | |
2009-11-27 | r300g,llvmpipe: fix some more merge problems | Roland Scheidegger | |
2009-11-27 | Merge branch 'width0' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/r300/r300_texture.c src/gallium/state_trackers/xorg/xorg_exa.c src/mesa/state_tracker/st_cb_texture.c | |||
2009-11-26 | gallium: fix more statetrackers/drivers for not using texture ↵ | Roland Scheidegger | |
width/height/depth arrays | |||
2009-11-26 | llvmpipe: Fake missing SSSE3 when simulation less capabable machines. | José Fonseca | |
SSE3 != SSSE3 and so far we only use the later. | |||
2009-11-26 | llvmpipe: Update/correct CPU requirements. | José Fonseca | |
There are no hard requirements at the moment. We don't really emit any sse3 yet. Just some ssse3. Thanks to Roland for spotting these incorrections. | |||
2009-11-24 | llvmpipe: Update instructions. | José Fonseca | |
2009-11-24 | tgsi: rename fields of tgsi_full_src_register to reduce verbosity | Keith Whitwell | |
SrcRegister -> Register SrcRegisterInd -> Indirect SrcRegisterDim -> Dimension SrcRegisterDimInd -> DimIndirect | |||
2009-11-24 | tgsi: rename fields of tgsi_full_dst_register to reduce verbosity | Keith Whitwell | |
DstRegister -> Register DstRegisterInd -> Indirect | |||
2009-11-24 | tgsi: rename fields of tgsi_full_declaration to reduce verbosity | Keith Whitwell | |
DeclarationRange -> Range | |||
2009-11-24 | tgsi: rename fields of tgsi_full_instruction to avoid excessive verbosity | Keith Whitwell | |
InstructionPredicate -> Predicate InstructionLabel -> Label InstructionTexture -> Texture FullSrcRegisters -> Src FullDstRegisters -> Dst | |||
2009-11-24 | llvmpipe: Use assert instead of abort. Only verify functions on debug builds. | José Fonseca | |
2009-11-24 | llvmpipe: Fix memory leak. | José Fonseca | |
2009-11-24 | llvmpipe: Use the generic conversion routine for depths. | José Fonseca | |
This allows for z32f depth format to work correctly. | |||
2009-11-24 | llvmpipe: Be more conservative with the supported formats. | José Fonseca | |
We'll likely support much more formats, but doing this allows to run more testsuites without immediately hit assertion failures. | |||
2009-11-24 | llvmpipe: Fix typo in comparison operator. | José Fonseca | |
2009-11-24 | gallium: try and update r300 and nv drivers for tgsi changes | Keith Whitwell | |
It would be nice if these drivers built under the linux-debug header so that these types of interface changes can be minimally propogated into those drivers by people without the hardware. They don't have to generate a working driver -- though a command-dumping winsys would be an excellent for regression checking. | |||
2009-11-10 | llvmpipe: Fix derived blend color state. | José Fonseca | |
2009-11-09 | llvmpipe: Ensure stack variables in unit tests are properly aligned. | José Fonseca | |
2009-11-06 | llvmpipe: Fix build with llvm 2.6. | José Fonseca | |
Fixes bug 24949. | |||
2009-11-03 | llvmpipe: Sanitise shader semantic and interpolator handling. | Michal Krol | |
Handle the remaining semantic names and indices. Respect color interpolator when not flatshading. Based on Michal's softpipe commit eb699d64ec7057032139baccedcb0694ca41d706. | |||
2009-11-03 | llvmpipe: remove old prim_setup draw stage | Keith Whitwell | |
Everything now goes through the draw_vbuf handler, the same as regular drivers. Based on Keith's commit 4fe0fc3eba1f79beda890a5016359d549bab6ad4. | |||
2009-11-03 | llvmpipe: Respect gl_rasterization_rules in primitive setup. | José Fonseca | |
Based on Michal's identical commit for softpipe (ca9c413647bf9efb5ed770e3a655bc758075aec7). | |||
2009-10-28 | llvmpipe: Make sure the JIT engine and X86 target are linked on MSVC build. | José Fonseca | |
Basically mimic the llvm 2.6 way of linking execution engines and targets. | |||
2009-10-28 | llvmpipe: Implement round() for MSVC. | José Fonseca | |
2009-10-25 | llvmpipe: Human friendlier sampler state dump. | José Fonseca | |
2009-10-25 | llvmpipe: Dump the sampler state of the shader key. | José Fonseca | |
2009-10-25 | llvmpipe: Immediate multiplication. | José Fonseca | |
2009-10-25 | llvmpipe: Fast path for sampling rgba8 textures with linear filtering. | José Fonseca | |
Implement Keith's suggestion of doing most of the sampling with 16x8 and 8x16 AoS, and only doing the conversion to floating point SoA at the very last step. Improves gloss performance by 10%. | |||
2009-10-25 | llvmpipe: Make lerping work for 8.8 fixed point values. | José Fonseca | |
2009-10-25 | llvmpipe: New module to help make assertions about formats. | José Fonseca | |
2009-10-25 | llvmpipe: New function to unpack rgba8 formats into 4 x u8n AoS. | José Fonseca | |
2009-10-25 | llvmpipe: Split the format swizzling step from the unpacking. | José Fonseca | |