diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2006-04-07 23:17:04 +0000 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2006-04-07 23:17:04 +0000 |
commit | 3288506bb324c1de36985170d9862c5c7d143b61 (patch) | |
tree | 1ff6dca620bb38c9390b002a46a3c51946dc82d7 /src | |
parent | 0ae947b760b829010392a41c0d0497466d775474 (diff) |
Add a DrawablePtr argument to the XV functions to pave the way for
redirected video.
Diffstat (limited to 'src')
-rw-r--r-- | src/v4l.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -279,7 +279,7 @@ static int V4lPutVideo(ScrnInfoPtr pScrn, short vid_x, short vid_y, short drw_x, short drw_y, short vid_w, short vid_h, short drw_w, short drw_h, - RegionPtr clipBoxes, pointer data) + RegionPtr clipBoxes, pointer data, DrawablePtr pDraw) { PortPrivPtr pPPriv = (PortPrivPtr) data; struct video_clip *clip; @@ -474,7 +474,7 @@ static int V4lPutStill(ScrnInfoPtr pScrn, short vid_x, short vid_y, short drw_x, short drw_y, short vid_w, short vid_h, short drw_w, short drw_h, - RegionPtr clipBoxes, pointer data) + RegionPtr clipBoxes, pointer data, DrawablePtr pDraw) { #if 0 PortPrivPtr pPPriv = (PortPrivPtr) data; |