diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2006-04-10 11:26:33 -0700 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-04-10 11:26:33 -0700 |
commit | 43c93057c044f33c20b1dd639eaeabefc0901589 (patch) | |
tree | 45223cfd66939f8777b127f49bff3114f10c80df /src/i830_video.c | |
parent | 39bdfbb4c23c9ba2a44888f22330a892c4becedc (diff) |
Add a DrawablePtr argument to the XV functions to pave the way for redirected
video.
Diffstat (limited to 'src/i830_video.c')
-rw-r--r-- | src/i830_video.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index 7062d0f5..afdc99aa 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -108,7 +108,7 @@ static void I830QueryBestSize(ScrnInfoPtr, Bool, unsigned int *, pointer); static int I830PutImage(ScrnInfoPtr, short, short, short, short, short, short, short, short, int, unsigned char *, short, short, - Bool, RegionPtr, pointer); + Bool, RegionPtr, pointer, DrawablePtr); static int I830QueryImageAttributes(ScrnInfoPtr, int, unsigned short *, unsigned short *, int *, int *); @@ -1876,7 +1876,8 @@ I830PutImage(ScrnInfoPtr pScrn, short drw_w, short drw_h, int id, unsigned char *buf, short width, short height, - Bool sync, RegionPtr clipBoxes, pointer data) + Bool sync, RegionPtr clipBoxes, pointer data, + DrawablePtr pDraw) { I830Ptr pI830 = I830PTR(pScrn); I830PortPrivPtr pPriv = (I830PortPrivPtr) data; |