diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:48:59 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:48:59 +0000 |
commit | 46bac6d7ad1c5be6b98f8646bcb4eed5aa93e469 (patch) | |
tree | 44777a8a902d417599c3e9abb0c70200e2aa274c /src/i810_dri.h | |
parent | 3ad0d9a73bc0a4f3edb858d5f3a7c36827b7a429 (diff) |
merge latest (4.3.99.16) from XFree86 (vendor) branch
Diffstat (limited to 'src/i810_dri.h')
-rw-r--r-- | src/i810_dri.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/i810_dri.h b/src/i810_dri.h index cf0532cb..11a33112 100644 --- a/src/i810_dri.h +++ b/src/i810_dri.h @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_dri.h,v 1.10 2002/12/10 01:27:04 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_dri.h,v 1.11 2003/09/28 20:15:58 alanh Exp $ */ #ifndef _I810_DRI_ #define _I810_DRI_ @@ -95,8 +95,10 @@ typedef struct { * kick out your own texture or someone else's - simply eject * them all in LRU order. */ - I810TexRegionRec texList[I810_NR_TEX_REGIONS + 1]; /* Last elt is sentinal */ + + drmTextureRegion texList[I810_NR_TEX_REGIONS + 1]; + /* Last elt is sentinal */ int texAge; /* last time texture was uploaded */ int last_enqueue; /* last time a buffer was enqueued */ @@ -107,6 +109,11 @@ typedef struct { int vertex_prim; + int pf_enabled; /* is pageflipping allowed? */ + int pf_active; /* is pageflipping active right now? */ + int pf_current_page; /* which buffer is being displayed? */ + + } I810SAREARec, *I810SAREAPtr; typedef struct { |