summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/galahad
AgeCommit message (Collapse)Author
2010-07-29gallium: Keep only pipe_context::draw_vbo.Chia-I Wu
That is, remove pipe_context::draw_arrays, pipe_context::draw_elements, pipe_context::draw_arrays_instanced, pipe_context::draw_elements_instanced, pipe_context::draw_range_elements.
2010-07-29gallium: Implement draw_vbo and set_index_buffer for all drivers.Chia-I Wu
Some drivers define a generic function that is called by all drawing functions. To implement draw_vbo for such drivers, either draw_vbo calls the generic function or the prototype of the generic function is changed to match draw_vbo. Other drivers have no such generic function. draw_vbo is implemented by calling either draw_arrays and draw_elements. For most drivers, set_index_buffer does not mark the state dirty for tracking. Instead, the index buffer state is emitted whenever draw_vbo is called, just like the case with draw_elements. It surely can be improved.
2010-06-28glhd: Build with sconsJakob Bornecrantz
2010-06-28glhd: Re-integrate with the debug systemJakob Bornecrantz
2010-06-28glhd: Remove leftover fileJakob Bornecrantz
2010-06-28Merge branch 'gallium-drm-driver-drescriptor'Jakob Bornecrantz
Conflicts: src/gallium/state_trackers/egl/x11/native_dri2.c src/gallium/state_trackers/egl/x11/native_x11.c src/gallium/state_trackers/egl/x11/native_x11.h src/gallium/state_trackers/xorg/xorg_driver.c src/gallium/winsys/radeon/drm/radeon_drm.c
2010-06-24glhd: Add test for logicop enable.Corbin Simpson
Only for first RT at the moment, as there is no trivial way in galahad to look at framebuffer state and (sadly) people don't usually calloc their CSOs, so flags could be wrongly set. On the other hand, of course, galahad will hopefully encourage more people to calloc their CSOs. :3
2010-06-23glhd: Simple rasterizer checks.Corbin Simpson
From the documentation.
2010-06-23id, glhd: Unbreak texturing.Corbin Simpson
Argfl.
2010-06-23glhd: Use an environment variable (GALAHAD) to enable. Off by default.Corbin Simpson
2010-06-22id, glhd: Fix malloc/calloc of struct.Corbin Simpson
( >&)
2010-06-22glhd: Add query protection.Corbin Simpson
Not quite copied from r300g. This is slightly more API-compliant.
2010-06-22glhd: Grab framebuffer state checks from r300g.Corbin Simpson
2010-06-22glhd: Grab resource_copy_region from r300g.Corbin Simpson
2010-06-22glhd: Grab is_format_supported warning from r300g.Corbin Simpson
2010-06-22glhd: Add glhd_warn for unconditional stderr output.Corbin Simpson
Design decision. Bad API errors should never be silenced. Of course, you can always not use galahad.
2010-06-22id, glhd: Fix segfault with misreferenced pipe member.Corbin Simpson
And remove the offending member to keep that from happening again.
2010-06-22targets, radeong: Add Galahad.Corbin Simpson
Currently unconditional and causes segfaults.
2010-06-22gallium/drivers: Create Galahad from identity.Corbin Simpson
Galahad is a sanity-checking layer meant to replace the crufty and scattered sanity checks inside drivers with a robust, non-silenceable, useful set of warnings and errors that can be used to keep misbehaving state trackers from going unnoticed.