Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-23 | i965g: Move bootstrap code to targets | Jakob Bornecrantz | |
2010-06-23 | i965g: Rename winsys file | Jakob Bornecrantz | |
2010-06-23 | i965g: Moved pci_id to winsys struct | Jakob Bornecrantz | |
2010-06-23 | target-helpers: Add inline helpers | Jakob Bornecrantz | |
2010-06-14 | swrastg: Fix glue file | Jakob Bornecrantz | |
2010-06-06 | r300g: Move bootstrap code to targets | Jakob Bornecrantz | |
2010-06-06 | i915g: Move bootstrap code to targets | Jakob Bornecrantz | |
2010-06-06 | svga: Move bootstrap code to targets | Jakob Bornecrantz | |
2010-06-06 | swrastg: Use new drm_driver interface in EGL | Jakob Bornecrantz | |
The EGL state tracker is really weird in how it does software, in the past we would just not return a drm_api struct but now, there is no callback to get a function so we just set the create_screen hock to NULL to make it switch to software. | |||
2010-06-06 | gallium: Make all drm drivers use the new drm compat helper | Jakob Bornecrantz | |
2010-06-06 | gallium: drm api compat helper | Jakob Bornecrantz | |
This is temporary untill all drivers have moved to the new drm driver descriptor interface. | |||
2010-06-06 | gallium: Convert state trackers to drm driver interface | Jakob Bornecrantz | |
2010-06-06 | gallium: Add drm driver interface | Jakob Bornecrantz | |
This interfacre replaces the drm_api api it works very much the same way as drm_api but with the exception that its meant for the target to implement it. And it does not export a get function and neither a destroy function. | |||
2010-06-06 | i965g: Use Xorg template makefile | Jakob Bornecrantz | |
2010-06-06 | nouveau: Use Xorg template makefile | Jakob Bornecrantz | |
2010-06-06 | nouveau: Remove left over argument in drm api | Jakob Bornecrantz | |
2010-06-06 | r300g: Use Xorg template makefile | Jakob Bornecrantz | |
2010-06-07 | graw: remove references to unistd.h | Keith Whitwell | |
2010-06-07 | util: new file u_dirty_flags.h | Keith Whitwell | |
2010-06-07 | tests/graw: missing file tri.c | Keith Whitwell | |
2010-06-07 | graw_xlib: build fixes | Keith Whitwell | |
2010-06-07 | graw: update graw_null after interface changes and build graw tests again | Keith Whitwell | |
2010-06-07 | softpipe: remove assert on setting constbufs greater than zero | Keith Whitwell | |
2010-06-07 | llvmpipe: hook up basic gs and multiple constant buffer support | Keith Whitwell | |
2010-06-07 | cell/spu: divorce from tgsi_exec.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 | include/st: new file swrast_screen_create.h | 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-07 | regress: remove interpolation and semantic info from vs inputs | Keith Whitwell | |
2010-06-07 | test/graw: add vp-test | Keith Whitwell | |
2010-06-07 | tests/graw: add fp-test | Keith Whitwell | |
2010-06-07 | r300g: fix 24-bit depth texturing | Marek Olšák | |
This is a secret texture format, do not tell anybody. And it looks like we can read stencil in the shader too. | |||
2010-06-06 | r600g: add shader literal constant support | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-06-06 | r300g: workaround index bias on chipsets that do not support it | Marek Olšák | |
2010-06-04 | i915g: Use template Xorg makefile | Jakob Bornecrantz | |
2010-06-04 | gallium: Use correct defines in Xorg template makefile | Jakob Bornecrantz | |
2010-06-04 | gallium: Add winsys to include path to Xorg template makefile | Jakob Bornecrantz | |
2010-06-05 | gallium: always build drivers/sw | Joakim Sindholt | |
2010-06-05 | r600g: split instruction into scalar | Jerome Glisse | |
Split instruction into scalar in core compiler this simplify the way we translate the instruction in latter stage. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-06-05 | Revert "llvmpipe: handle PIPE_CAP_TEXTURE_SWIZZLE query" | Roland Scheidegger | |
This reverts commit acb20e7208341fb6a2b81ac10aa01f17e93a1dea. Oops should check commits after rebase... | |||
2010-06-05 | i915g: fix bug in ds clear logic (still disabled) | Roland Scheidegger | |
2010-06-05 | llvmpipe: handle PIPE_CAP_TEXTURE_SWIZZLE query | Roland Scheidegger | |
asserts on unknown caps | |||
2010-06-05 | llvmpipe: Expose PIPE_CAP_TEXTURE_SWIZZLE. | José Fonseca | |
2010-06-05 | mesa/st: add support for EXT_texture_swizzle. | Dave Airlie | |
This passes on r300g, the only bit I'm not really sure about is the handling of the sampler_view in st_atom_texture.c, I unreference it there if the swizzle value changes and I also have to create a new set of functions to create a new one since the u_sampler.c ones don't handle swizzle so much. adds r300g + softpipe enables, I think other drivers could pass easily enough. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-06-04 | i915g: Rename winsys c file. | Vinson Lee | |
This was missed in commit e7f0f6bb72c63fd6e6ddcb7a815be68682f1764c. Fixes i915g SCons build. | |||
2010-06-04 | llvmpipe: new -s option to run single test | Brian Paul | |
Put specific test code in the test_single() function and pass -s to execute that code. | |||
2010-06-04 | llvmpipe: Do unswizzling in parallel when flushing for transfers. | José Fonseca | |