Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-20 | llvmpipe: check bitshift against PIPE_MAX_SHADER_OUTPUTS | Brian Paul | |
2010-09-20 | llvmpipe: implement sprite coord origin modes | Brian Paul | |
2010-09-20 | llvmpipe: rename sprite field, add sprite_coord_origin | Brian Paul | |
2010-09-20 | llvmpipe: clean-up, comments in setup_point_coefficient() | Brian Paul | |
2010-09-20 | llvmpipe: reformatting, remove trailing whitespace, etc | Brian Paul | |
2010-09-20 | llvmpipe: indentation fix | Brian Paul | |
2010-09-20 | llvmpipe: maintain fragment shader state for draw module | Brian Paul | |
2010-09-16 | gallivm: Start collecting bitwise arithmetic helpers in a new module. | José Fonseca | |
2010-09-16 | llvmpipe: add DEBUG_FS to dump variant information | Keith Whitwell | |
2010-09-16 | llvmpipe: add LP_PERF flag to disable various aspects of rasterization | Keith Whitwell | |
Allows disabling various operations (mainly texture-related, but will grow) to try & identify bottlenecks. Unlike LP_DEBUG, this is active even in release builds - which is necessary for performance investigation. | |||
2010-09-15 | llvmpipe: s/boolean/unsigned/ in bitfield to silence warning | Brian Paul | |
Using non-int types for bitfields is a gcc extension. The size of the struct is not effected by this change. | |||
2010-09-15 | llvmpipe: cast to silence warning | Brian Paul | |
2010-09-15 | llvmpipe: return zero from floor_pot(zero) | Keith Whitwell | |
2010-09-15 | llvmpipe: remove duplicate code | Keith Whitwell | |
Bad rebase presumably. | |||
2010-09-15 | llvmpipe: brackets around macro arg | Keith Whitwell | |
2010-09-14 | llvmpipe: Remove unnecessary header. | Vinson Lee | |
2010-09-14 | llvmpipe: Initialize variable for potentially unhandled switch case. | Vinson Lee | |
2010-09-14 | gallium: introduce get_shader_param (ALL DRIVERS CHANGED) (v3) | Luca Barbieri | |
Changes in v3: - Also change trace, which I forgot about Changes in v2: - No longer adds tessellation shaders Currently each shader cap has FS and VS versions. However, we want a version of them for geometry, tessellation control, and tessellation evaluation shaders, and want to be able to easily query a given cap type for a given shader stage. Since having 5 duplicates of each shader cap is unmanageable, add a new get_shader_param function that takes both a shader cap from a new enum and a shader stage. Drivers with non-unified shaders will first switch on the shader and, within each case, switch on the cap. Drivers with unified shaders instead first check whether the shader is supported, and then switch on the cap. MAX_CONST_BUFFERS is now per-stage. The geometry shader cap is removed in favor of checking whether the limit of geometry shader instructions is greater than 0, which is also used for tessellation shaders. WARNING: all drivers changed and compiled but only nvfx tested | |||
2010-09-13 | llvmpipe: Fix non SSE2 builds. | José Fonseca | |
Should fix fdo 30168. | |||
2010-09-13 | llvmpipe: Change asm to __asm__. | Witold Baryluk | |
According to gcc documentation both are equivalent, second are prefered as first can make conflict with existing symbols. Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-09-13 | llvmpipe: Unbreak rasterization on 64bit. | José Fonseca | |
2010-09-13 | llvmpipe: use gcc asm only with gcc | José Fonseca | |
2010-09-12 | llvmpipe: introduce tri_3_4 for tiny triangles | Keith Whitwell | |
2010-09-12 | llvmpipe: allow tri_3_16 at any 4-aligned location within a tile | Keith Whitwell | |
Doesn't require 16-alignment, so catch more cases. | |||
2010-09-12 | llvmpipe: refactor tri_3_16 | Keith Whitwell | |
Keep step array as a set of four m128i's and reuse throughout the rasterization. | |||
2010-09-12 | llvmpipe: pass linear masks to fragment shader | Keith Whitwell | |
Fragment shader can extract the correct bits for each quad. | |||
2010-09-12 | llvmpipe: fix warnings on both 32 and 64 bit builds | Keith Whitwell | |
2010-09-12 | llvmpipe: fix wierd performance regression in isosurf | Keith Whitwell | |
I really don't understand the mechanism behind this, but it seems like the way data blocks for a scene are malloced, and in particular whether we treat them as stack or a queue, and whether we retain the most recently allocated or least recently allocated has a real affect (~5%) on isosurf framerates... This is probably specific to my distro or even just my machine, but none the less, it's nicer not to see the framerates go in the wrong direction. | |||
2010-09-12 | llvmpipe: Only generate the whole shader specialization for opaque shaders. | José Fonseca | |
If not opaque, then the color buffer will have to be read any way, therefore the specialization is pointless. | |||
2010-09-11 | llvmpipe: Silence some warnings. | José Fonseca | |
2010-09-11 | llvmpipe: Don't store display the alpha ref value in the key. | José Fonseca | |
It's never used. | |||
2010-09-11 | gallivm: s/lp_build_broadcast_aos/lp_build_swizzle_scalar_aos/ | José Fonseca | |
More accurate description of this function purpose. | |||
2010-09-11 | llvmpipe: restore larger command blocks | Keith Whitwell | |
2010-09-11 | llvmpipe: move some debug to DEBUG_SCENE | Keith Whitwell | |
2010-09-11 | llvmpipe: add DEBUG_MEM option | Keith Whitwell | |
2010-09-11 | llvmpipe: allow bigger scenes | Keith Whitwell | |
2010-09-09 | llvmpipe: remove redundant tgsi_dup_tokens() call | Brian Paul | |
We were calling this twice so the first allocation was orphaned/leaked. | |||
2010-09-07 | llvmpipe: Add lp_rast_debug.c to Makefile. | Chia-I Wu | |
2010-09-07 | llvmpipe: Refactor lp_scene_add_resource_reference | José Fonseca | |
Less goto spaghetti. | |||
2010-09-07 | llvmpipe: Fix negated logic in lp_scene_add_resource_reference(). | José Fonseca | |
Fixes performance regression. | |||
2010-09-07 | llvmpipe: move more coef setup into lp_setup_coef.c | Keith Whitwell | |
2010-09-07 | llvmpipe: declare fence handle struct | Keith Whitwell | |
2010-09-07 | llvmpipe: rasterization debugging helpers | Keith Whitwell | |
2010-09-07 | llvmpipe: use opcodes instead of function pointers in bins | Keith Whitwell | |
Also, move some state from rasterizer struct to the scene. | |||
2010-09-07 | llvmpipe: rearrange queries | Keith Whitwell | |
2010-09-07 | llvmpipe: enforce fixed memory limit on scenes | Keith Whitwell | |
2010-09-07 | llvmpipe: clean up deferred zstencil clears | Keith Whitwell | |
2010-09-07 | llvmpipe: rework fences and queries | Keith Whitwell | |
2010-09-07 | llvmpipe: move whole-tile emit into a function | Keith Whitwell | |
2010-09-07 | llvmpipe: put fs variant dumping in a function | Keith Whitwell | |