Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-09 | draw: fix geometry shader which emit multiplie primitives | Zack Rusin | |
2010-06-09 | geometry shaders: make gs work with changable primitives and variable number ↵ | Zack Rusin | |
of vertices lots and lots of fixes for geometry shaders. in particular now we work when the gs emits a different primitive than the one the pipeline was started with and also we work when gs emits more vertices than would fit in the original buffer. | |||
2010-06-08 | draw: Remove unnecessary headers. | Vinson Lee | |
2010-06-09 | util: reference vertex buffers in blitter | Marek Olšák | |
2010-06-08 | gallium: scream when one of two unimplemented features in draw is used | Zack Rusin | |
plus used the correctly specified stride | |||
2010-06-08 | gallium: make draw auto work and add relevant caps and docs | Zack Rusin | |
2010-06-08 | gallium: a lot more complete implementation of stream output | Zack Rusin | |
interface wise we have everything needed by d3d10 and gl transform feedback. the draw module misses implementation of some corner cases (e.g. when stream output wants different number of components per output than normal rendering paths) | |||
2010-06-08 | gallium: basic and initial implementation of the stream output interface | Zack Rusin | |
aka transform feedback | |||
2010-06-07 | util: implement util_clear_depth_stencil fallback | Roland Scheidegger | |
this doesn't really look terribly useful for drivers to use, but until drivers use their own implementation provide this since some state trackers really want to use these functions. | |||
2010-06-07 | tgsi: null-terminate string in parse_identifier | Keith Whitwell | |
Hit this parsing geometry shader properties. | |||
2010-06-07 | draw: don't use llvm engine when geometry shaders active | Keith Whitwell | |
They aren't implemented for llvm. | |||
2010-06-07 | util: new file u_dirty_flags.h | Keith Whitwell | |
2010-06-07 | util: add u_box_3d | Keith Whitwell | |
2010-06-07 | gallivm: eliminate tgsi_exec.h include | Keith Whitwell | |
2010-06-07 | util: add util_framebuffer_min_size | Keith Whitwell | |
2010-06-07 | util: allocate larger tmp_row in util_format_translate | Keith Whitwell | |
The tmp_row storage allocation took into account the format's y block size by allocating y_step rows of data. However, the x block size was not being taken into account when deciding how wide those rows need to be. Now make sure that tmp_row is at least x_step by y_step in size. | |||
2010-06-07 | tgsi: reject interpolation and semantics on vs inputs | Keith Whitwell | |
2010-06-03 | util: Remove unnecessary header. | Vinson Lee | |
2010-06-03 | Merge branch 'gallium-newclear' | Roland Scheidegger | |
Conflicts: src/gallium/state_trackers/python/p_context.i | |||
2010-06-03 | gallium: rename clearRT / clearDS to clear_render_target / clear_depth_stencil | Roland Scheidegger | |
more consistent with rest of gallium naming conventions. Also rename driver-internal names for these the same. | |||
2010-06-03 | tgsi: we don't support indirect input/output registers in SSE codegen yet | Brian Paul | |
Extend the check for indirect addressing of temp regs to include input/output regs. Fixes failure with piglit glsl-texcoord-array.shader_test test when using SSE codegen. | |||
2010-06-03 | tgsi: whitespace cleanup | Brian Paul | |
2010-06-03 | gallium: add interpolation parameter to simple shader functions | Brian Paul | |
This lets us specify linear interpolation instead of perspective interpolation for blit operations. Might be a bit faster. | |||
2010-06-03 | util/u_debug: use MAX2 macro | Brian Paul | |
2010-06-03 | gallivm: Register the JIT engine with oprofile on debug/profile builds. | José Fonseca | |
2010-06-03 | gallivm: Factor out the quad derivative code into a single place. Fix ddy. | José Fonseca | |
For ddy it should be (bottom - top). | |||
2010-06-03 | gallium: silence all debug_named_value related warnings | Joakim Sindholt | |
2010-06-03 | util/u_debug: add description field to debug_named_value | Joakim Sindholt | |
2010-06-02 | gallivm: bump up LP_BUILD_FLOW_MAX_VARIABLES | Brian Paul | |
Fixes failed assertion with piglit fbo-drawbuffers-fragcolor.c See fd.o bug 28358. With 8 color buffers + Z we need to declare 33 vars, at least. | |||
2010-06-02 | gallivm: Add a lp_build_const_elem(). | José Fonseca | |
2010-06-02 | llvmpipe: Store often used LLVM types in the lp_build_context. | José Fonseca | |
2010-06-02 | gallivm: Zero min_lod and max_lod when only one view is selected and min/mag ↵ | José Fonseca | |
filter are equal. | |||
2010-06-02 | gallivm: Make lp_build_sample_wrap_int usage more accurate. | José Fonseca | |
Fixes mesa texwrap demo border with GL_CLAMP. | |||
2010-06-02 | gallivm: Don't use reciprocate in lp_build_sample_wrap_linear(). | José Fonseca | |
Always clamp the scaled coordinates. | |||
2010-06-02 | gallivm: Avoid fp arithmetic in lp_build_sample_wrap_nearest(). | José Fonseca | |
2010-06-02 | gallivm: Don't use lp_build_sample_wrap_nearest() | José Fonseca | |
Always clamp with scaled coordinates. | |||
2010-06-01 | tgsi: Drop uses_fogcoord and uses_frontfacing from tgsi_scan. | José Fonseca | |
It was not used anywhere; the code was buggy (it didn't take care of indirect registers and could potential cause buffer underflows) and the same effect can now be easily achieved by just by looking at input_semantic_name[] and input_usage_mask[]. | |||
2010-06-01 | tgsi: Remove tgsi-instruction-set.txt. | José Fonseca | |
Deprecated by tgsi.rst, and no point in keeping it around if it's not being updated. | |||
2010-06-01 | tgsi: Determine which shader input channels are effectively. | José Fonseca | |
TGSI's UsageMask flag is never set. We can move this logic into tgsi_ureg, but there there are still cases where's not used, so this seems a better place for now. | |||
2010-05-31 | gallium/util: Define isfinite and isnan for MSVC. | Chia-I Wu | |
Define isfinite and isnan to _finite and _isnan respectively for MSVC. Those macros are needed by st/vega. | |||
2010-05-30 | util: Add inline function for approximate floating point comparison. | José Fonseca | |
2010-05-30 | draw: Use pointer_to_func() instead of custom wrappers. | José Fonseca | |
2010-05-30 | util: Generic pointer to func conversion helper. | José Fonseca | |
That observes strict-aliasing rules. | |||
2010-05-29 | util: adapt to clear interface changes | Roland Scheidegger | |
2010-05-27 | gallivm: add assertions to check type of phi variables | Brian Paul | |
2010-05-27 | util: Also add a define for the dynamic library's prefix. | José Fonseca | |
2010-05-26 | gallivm: Remove unnecessary headers. | Vinson Lee | |
2010-05-26 | util: Remove unnecessary headers. | Vinson Lee | |
2010-05-25 | util: update comments at blitter | Marek Olšák | |
2010-05-25 | util: fix indentation in blitter | Marek Olšák | |