diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:37 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:37 +0000 |
commit | 72063c52b82faf80a0183f66d2fd5789def76d8f (patch) | |
tree | 44777a8a902d417599c3e9abb0c70200e2aa274c /src/i810_dri.h | |
parent | e04a1a8f862eb63b546fb74e73ee602fefb82e00 (diff) |
XFree86 4.3.99.16xf86-4_3_99_16
Bring the tree up to date for the Cygwin folks
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 { |