diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-03-01 18:28:13 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-03-01 18:28:13 -0500 |
commit | 528061d51bb4248d6fabec9579dead32a730467a (patch) | |
tree | da6d57b98e4a2826e67f11bcc9176c298fc1139c /src/radeon.h | |
parent | 96a0bafa16dbb67a3d10fa6fe45be13930495ddc (diff) |
R6xx/R7xx: write vertexes directly to the IB
Reduces the vertex buffer setup overhead
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/radeon.h b/src/radeon.h index a7ed95e4..0eea7c13 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -571,38 +571,6 @@ struct radeon_dri { }; #endif -#ifdef XF86DRI -#ifdef USE_EXA -struct r6xx_solid_vertex { - float x; - float y; -}; - -struct r6xx_copy_vertex { - float x; - float y; - float s; - float t; -}; - -struct r6xx_comp_vertex { - float x; - float y; - float src_s; - float src_t; -}; - -struct r6xx_comp_mask_vertex { - float x; - float y; - float src_s; - float src_t; - float mask_s; - float mask_t; -}; -#endif -#endif - struct radeon_accel_state { /* common accel data */ int fifo_slots; /* Free slots in the FIFO (64 max) */ |