diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2006-04-07 23:06:02 +0000 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2006-04-07 23:06:02 +0000 |
commit | d706f494ed22afd369991e8c75a2d4f5aed15305 (patch) | |
tree | cbdf16fe60928d3fe5c288f018397329b0531068 /src/r128_video.c | |
parent | f94685aec26b65f60c00a4b1bcd8f26bd80eb6e4 (diff) |
Add a DrawablePtr argument to the XV functions to pave the way for
redirected video.
Diffstat (limited to 'src/r128_video.c')
-rw-r--r-- | src/r128_video.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/r128_video.c b/src/r128_video.c index 805aa0ff..c814e497 100644 --- a/src/r128_video.c +++ b/src/r128_video.c @@ -37,7 +37,7 @@ static void R128QueryBestSize(ScrnInfoPtr, Bool, short, short, short, short, unsigned int *, unsigned int *, pointer); static int R128PutImage(ScrnInfoPtr, short, short, short, short, short, short, short, short, int, unsigned char*, short, - short, Bool, RegionPtr, pointer); + short, Bool, RegionPtr, pointer, DrawablePtr); static int R128QueryImageAttributes(ScrnInfoPtr, int, unsigned short *, unsigned short *, int *, int *); @@ -771,7 +771,8 @@ R128PutImage( int id, unsigned char* buf, short width, short height, Bool Sync, - RegionPtr clipBoxes, pointer data + RegionPtr clipBoxes, pointer data, + DrawablePtr pDraw ){ R128InfoPtr info = R128PTR(pScrn); R128PortPrivPtr pPriv = (R128PortPrivPtr)data; |