Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-03 | Merge branch 'gallium-embedded' | José Fonseca | |
2010-02-02 | softpipe: remove unnecessary #include | Brian Paul | |
2010-02-02 | llvmpipe: fix (potentially) broken AA points, AA lines | Brian Paul | |
This patch duplicates the softpipe fix seen in the preceeding commit. | |||
2010-02-02 | gallium: Move deprecated pipe/internal/p_winsys_screen.h inside ↵ | José Fonseca | |
util/u_simple_screen.h | |||
2010-02-02 | gallium: pipe/p_inlines.h -> util/u_inlines.h | José Fonseca | |
2010-01-29 | softpipe: support all TGSI fragment coord conventions (v4) | Luca Barbieri | |
Changes in v4: - Rebase and modify for changes in previous patches Changes in v3: - Use positive caps instead of negative caps Changes in v2: - Now takes the fragment convention directly from the fragment shader Adds internal support for all fragment coord conventions to softpipe. This patch is not required for use with the current state trackers, but it allows softpipe to run any TGSI program and enhances performance. | |||
2010-01-29 | tgsi: add caps for fragment coord conventions (v3) | Luca Barbieri | |
Changes in v3: - Renumber caps to accomodate caps to add to master in the meantime - Document caps - Add unsupported caps to *_screen.c too Changes in v2: - Split for properties patch - Use positive caps instead of negative caps This adds 4 caps to indicate support of each of the fragment coord conventions. All drivers are also modifed to add the appropriate caps. Some drivers were incorrectly using non-Gallium-default conventions, and caps for them have them set so that they will behave correctly after the later state tracker patches. This drivers are softpipe/llvmpipe (uses integer rather than half integer) and pre-nv50 Nouveau (uses lower left rather than upper left). Other drivers might be broken. With this patchset, fixing them is only a matter of exposing the appropriate caps that match the behavior of the existing code. Drivers are encouraged to support all conventions themselves for better performance, and this feature is added to softpipe in a later patch. | |||
2010-01-28 | softpipe: Remove unnecessary header. | Vinson Lee | |
2010-01-28 | Merge commit 'origin/perrtblend' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_screen.c src/gallium/include/pipe/p_defines.h | |||
2010-01-28 | softpipe: Report some sane values for constant buffer CAP queries. | Michal Krol | |
2010-01-28 | gallium: Rename PIPE_MAX_CONSTANT to PIPE_MAX_CONSTANT_BUFFERS. | Michal Krol | |
2010-01-28 | gallium: Enable multiple constant buffers for vertex and geometry shaders. | Michal Krol | |
2010-01-28 | gallium: Implement 2D constant buffers for fragment shader in softpipe. | Michal Krol | |
2010-01-26 | softpipe: Remove unnecessary header. | Vinson Lee | |
2010-01-26 | softpipe: Remove unused variables. | Vinson Lee | |
2010-01-25 | softpipe: enable new blend functionality | Roland Scheidegger | |
works with tests/drawbuffers2 | |||
2010-01-25 | softpipe: adapt to blend changes | Roland Scheidegger | |
2010-01-22 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c | |||
2010-01-21 | softpipe: added region assertions in softpipe_get_tex_transfer() | Brian Paul | |
2010-01-20 | softpipe: Remove unnecessary headers. | Vinson Lee | |
2010-01-19 | softpipe: remove redundant assignments | Brian Paul | |
We initialized width/height/depth from pt->width0/height0/depth0 above. | |||
2010-01-19 | softpipe: Fix vertex buffer memory leak. | José Fonseca | |
2010-01-18 | softpipe: Skip depth testing for PIPE_S8_UNORM. | José Fonseca | |
2010-01-18 | softpipe: Fix leak in vbuf draw module | Jakob Bornecrantz | |
2010-01-17 | softpipe: Move st/python's malloc winsys to softpipe | Jakob Bornecrantz | |
Users of softpipe can still specify thier own winsys but now there is a default one also that uses malloc. This allows the malloc winsys to be shared with other users of softpipe. | |||
2010-01-15 | Merge branch 'gallium-noconstbuf' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_draw_arrays.c src/mesa/state_tracker/st_draw_feedback.c | |||
2010-01-14 | Merge branch 'instanced-arrays' | Michal Krol | |
Conflicts: src/gallium/drivers/softpipe/sp_draw_arrays.c | |||
2010-01-12 | gallium: draw_arrays/elements_instanced() are of type void. | Michal Krol | |
2010-01-11 | gallium: remove const qualifier from pipe_buffer argument in set_constant_buffer | Roland Scheidegger | |
2010-01-07 | gallium: Fix texture sampling with explicit LOD in softpipe. | Michal Krol | |
2010-01-07 | gallium: Pass per-element (not per-quad) LOD bias values down to texture ↵ | Michal Krol | |
sampler. | |||
2010-01-06 | softpipe: fix draw return value | Keith Whitwell | |
2010-01-06 | pipe_sampler_state::compare_mode is not a boolean enable flag. | Michal Krol | |
It's a 1-bit enum. | |||
2010-01-05 | Merge commit 'origin/gallium-draw-retval' | Keith Whitwell | |
Conflicts: src/gallium/drivers/identity/id_context.c | |||
2010-01-05 | Merge branch 'master' into instanced-arrays | Michal Krol | |
Conflicts: src/gallium/auxiliary/tgsi/tgsi_dump.c src/gallium/include/pipe/p_shader_tokens.h | |||
2009-12-31 | softpipe: implement conditional rendering | Brian Paul | |
2009-12-31 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: configs/darwin src/gallium/auxiliary/util/u_clear.h src/gallium/state_trackers/xorg/xorg_exa_tgsi.c src/mesa/drivers/dri/i965/brw_draw_upload.c | |||
2009-12-30 | sp: Generalise drawing code to remove dupes. | Michal Krol | |
Also, avoid nested draw calls from simpler versions. | |||
2009-12-30 | sp: Implement draw_elements_instanced(). | Michal Krol | |
2009-12-29 | Implement draw_arrays_instanced() in softpipe. | Michal Krol | |
Modify the translate module to respect instance divisors and accept instance id as a parameter to calculate input vertex offset. | |||
2009-12-27 | softpipe: Silence unintialized variable warnings. | Vinson Lee | |
2009-12-27 | softpipe: Silence unused variable warning. | Vinson Lee | |
2009-12-26 | softpipe: Flush draw module when fragment pipeline state changes. | José Fonseca | |
2009-12-26 | softpipe: Flush draw module before switching framebuffer. | José Fonseca | |
Otherwise geometry might end up in the wrong rendertarget. | |||
2009-12-25 | gallium: geometry shader can be always enabled and we don't need a cap for that | Zack Rusin | |
using the draw module allows us to enable geometry shading even on hardware that doesn't support it. | |||
2009-12-25 | softpipe: make it possible to dump geometry shader from the softpipe | Zack Rusin | |
2009-12-25 | softpipe/gs: don't crash with null shader | Zack Rusin | |
2009-12-25 | gallium: add geometry shader support to gallium | Zack Rusin | |
2009-12-24 | gallium: adapt drivers to pipe_constant_buffer removal | Roland Scheidegger | |
2009-12-22 | Merge branch 'gallium-edgeflags' | Roland Scheidegger | |
Conflicts: src/mesa/state_tracker/st_draw.c |