diff options
author | Eric Anholt <eric@anholt.net> | 2008-06-04 16:31:16 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-06-10 11:37:03 -0700 |
commit | b2216e7bc2f1a35f9fc1794bad83208cd5c583d1 (patch) | |
tree | 1eb5c6416740ffb2135a35a7bcfa70a635b8c09b /src/i830_ring.h | |
parent | d0fda9d24c5fe4870cdbd2ba0213091165666a8e (diff) |
Use batchbuffers instead of ring emits for general commands.
The batchbuffers are managed using libdrm and bufmgr_fake, and dispatched from
the ring from userland.
Diffstat (limited to 'src/i830_ring.h')
-rw-r--r-- | src/i830_ring.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/i830_ring.h b/src/i830_ring.h index c2078fb4..c296d41a 100644 --- a/src/i830_ring.h +++ b/src/i830_ring.h @@ -42,11 +42,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. pI830->ring_next &= pI830->LpRing->tail_mask; \ } while (0) -union intfloat { - float f; - unsigned int ui; -}; - #define OUT_RING_F(x) do { \ union intfloat tmp; \ tmp.f = (float)(x); \ |