summaryrefslogtreecommitdiff
path: root/shared-core/radeon_drv.h
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-07-04 09:34:24 +1000
committerDave Airlie <airlied@redhat.com>2008-07-04 09:34:24 +1000
commit142a309604b65c26ca95594943ee91dde8688697 (patch)
treef601ee065d7a81b701ba18e0461a5f6ef4122257 /shared-core/radeon_drv.h
parent11b7a81c8a776aa7761ee03fe55d741a44ba5df7 (diff)
modesetting: rip out all of the generation code.
not needed, hotplug will work just as well hopefully.
Diffstat (limited to 'shared-core/radeon_drv.h')
0 files changed, 0 insertions, 0 deletions
"hl com"> * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL * THE UNICHROME PROJECT, AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * * Author: Thomas Hellström 2004. */ #ifndef _VIA_VERIFIER_H_ #define _VIA_VERIFIER_H_ typedef enum{ no_sequence = 0, z_address, dest_address, tex_address }drm_via_sequence_t; typedef struct{ unsigned texture; uint32_t z_addr; uint32_t d_addr; uint32_t t_addr[2][10]; uint32_t pitch[2][10]; uint32_t height[2][10]; uint32_t tex_level_lo[2]; uint32_t tex_level_hi[2]; uint32_t tex_palette_size[2]; drm_via_sequence_t unfinished; int agp_texture; int multitex; drm_device_t *dev; drm_local_map_t *map_cache; uint32_t vertex_count; int agp; const uint32_t *buf_start; } drm_via_state_t; extern int via_verify_command_stream(const uint32_t * buf, unsigned int size, drm_device_t *dev, int agp); extern int via_parse_command_stream(drm_device_t *dev, const uint32_t * buf, unsigned int size); #endif