Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | |
2009-10-25 | llvmpipe: Allow different signs when unpacking. | José Fonseca | |
2009-10-25 | llvmpipe: Add inlines to quickly generate types matching the native SIMD ↵ | José Fonseca | |
register bitwidth. | |||
2009-10-25 | llvmpipe: Merge lp_build_load_rgba_soa into lp_build_sample_texel. | José Fonseca | |
2009-10-25 | llvmpipe: Factor our pixel offset computation. | José Fonseca | |
2009-10-25 | llvmpipe: Share testing infrastructure with lp_test_format. | José Fonseca | |
2009-10-25 | llvmpipe: Eliminate lp_build_store_rgba_aos. | José Fonseca | |
2009-10-25 | llvmpipe: Eliminate lp_build_load_rgba_aos. | José Fonseca | |
2009-10-25 | llvmpipe: Move a few format/sampling functions into better space. | José Fonseca | |
2009-10-23 | gallium: remove the swizzling parts of ExtSwizzle | Keith Whitwell | |
These haven't been used by the mesa state tracker since the conversion to tgsi_ureg, and it seems that none of the other state trackers are using it either. This helps simplify one of the biggest suprises when starting off with TGSI shaders. | |||
2009-10-23 | gallium: remove noise opcodes | Keith Whitwell | |
Provide a dummy implementation in the GL state tracker (move 0.5 to the destination regs). At some point, a motivated person could add a better implementation of noise. Currently not even the nvidia binary drivers do anything more than this. In any case, the place to do this is in the GL state tracker, not the poor driver. | |||
2009-10-22 | llvmpipe: Avoid yet another variable size array. | José Fonseca | |
2009-10-22 | llvmpipe: Define rdtsc for MSVC. | José Fonseca | |
2009-10-22 | llvmpipe: Avoid variable size arrays. | José Fonseca | |
Not really variable size, but MSVC still doesn't like them. | |||
2009-10-22 | llvmpipe: Use the pack/unpack functions for 8bit unsigned norm multiplication. | José Fonseca | |