Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | galahad: do map/unmap counting for resources | Brian Paul | 2010-09-03 | 2 | -0/+18 |
| | |||||
* | util: remove util_is_pot in favor of util_is_power_of_two | Marek Olšák | 2010-08-29 | 1 | -1/+1 |
| | | | | The function was duplicated. | ||||
* | galahad: remove incorrect comment just added | Luca Barbieri | 2010-08-20 | 1 | -1/+0 |
| | |||||
* | galahad: check resource_create template | Luca Barbieri | 2010-08-20 | 1 | -0/+29 |
| | |||||
* | galahad, i915g: Copy over constant buffer index check. | Corbin Simpson | 2010-08-20 | 1 | -0/+9 |
| | |||||
* | galahad, i915g: Move over a few state asserts. | Corbin Simpson | 2010-08-20 | 1 | -0/+16 |
| | |||||
* | galahad: Make it obvious on stderr that Galahad's active. | Corbin Simpson | 2010-08-19 | 2 | -0/+4 |
| | |||||
* | gallium: Keep only pipe_context::draw_vbo. | Chia-I Wu | 2010-07-29 | 1 | -68/+0 |
| | | | | | | | 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. | ||||
* | gallium: Implement draw_vbo and set_index_buffer for all drivers. | Chia-I Wu | 2010-07-29 | 1 | -0/+47 |
| | | | | | | | | | | | | | | | 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. | ||||
* | glhd: Build with scons | Jakob Bornecrantz | 2010-06-28 | 1 | -2/+2 |
| | |||||
* | glhd: Re-integrate with the debug system | Jakob Bornecrantz | 2010-06-28 | 1 | -1/+5 |
| | |||||
* | glhd: Remove leftover file | Jakob Bornecrantz | 2010-06-28 | 1 | -35/+0 |
| | |||||
* | Merge branch 'gallium-drm-driver-drescriptor' | Jakob Bornecrantz | 2010-06-28 | 3 | -99/+1 |
| | | | | | | | | | 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 | ||||
* | glhd: Add test for logicop enable. | Corbin Simpson | 2010-06-24 | 1 | -0/+7 |
| | | | | | | | | | 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 | ||||
* | glhd: Simple rasterizer checks. | Corbin Simpson | 2010-06-23 | 1 | -0/+10 |
| | | | | From the documentation. | ||||
* | id, glhd: Unbreak texturing. | Corbin Simpson | 2010-06-23 | 1 | -0/+1 |
| | | | | Argfl. | ||||
* | glhd: Use an environment variable (GALAHAD) to enable. Off by default. | Corbin Simpson | 2010-06-23 | 1 | -0/+3 |
| | |||||
* | id, glhd: Fix malloc/calloc of struct. | Corbin Simpson | 2010-06-22 | 1 | -1/+1 |
| | | | | ( >&) | ||||
* | glhd: Add query protection. | Corbin Simpson | 2010-06-22 | 1 | -0/+10 |
| | | | | Not quite copied from r300g. This is slightly more API-compliant. | ||||
* | glhd: Grab framebuffer state checks from r300g. | Corbin Simpson | 2010-06-22 | 2 | -0/+13 |
| | |||||
* | glhd: Grab resource_copy_region from r300g. | Corbin Simpson | 2010-06-22 | 1 | -0/+8 |
| | |||||
* | glhd: Grab is_format_supported warning from r300g. | Corbin Simpson | 2010-06-22 | 1 | -0/+4 |
| | |||||
* | glhd: Add glhd_warn for unconditional stderr output. | Corbin Simpson | 2010-06-22 | 2 | -0/+10 |
| | | | | | | Design decision. Bad API errors should never be silenced. Of course, you can always not use galahad. | ||||
* | id, glhd: Fix segfault with misreferenced pipe member. | Corbin Simpson | 2010-06-22 | 2 | -3/+2 |
| | | | | And remove the offending member to keep that from happening again. | ||||
* | targets, radeong: Add Galahad. | Corbin Simpson | 2010-06-22 | 1 | -1/+1 |
| | | | | Currently unconditional and causes segfaults. | ||||
* | gallium/drivers: Create Galahad from identity. | Corbin Simpson | 2010-06-22 | 11 | -0/+1930 |
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. |