xfree86: Remove xv clip notify driver hook
Nothing's using it. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
e89ccacea9
commit
6755aa2c12
|
@ -1117,10 +1117,6 @@ xf86XVClipNotify(WindowPtr pWin, int dx, int dy)
|
||||||
|
|
||||||
pPriv->pCompositeClip = NULL;
|
pPriv->pCompositeClip = NULL;
|
||||||
|
|
||||||
if (pPriv->AdaptorRec->ClipNotify)
|
|
||||||
(*pPriv->AdaptorRec->ClipNotify) (pPriv->pScrn, pPriv->DevPriv.ptr,
|
|
||||||
pWin, dx, dy);
|
|
||||||
|
|
||||||
pPriv->clipChanged = TRUE;
|
pPriv->clipChanged = TRUE;
|
||||||
|
|
||||||
if (ScreenPriv->PostValidateTree == PostValidateTreeUndefined) {
|
if (ScreenPriv->PostValidateTree == PostValidateTreeUndefined) {
|
||||||
|
|
|
@ -95,8 +95,6 @@ typedef int (*QueryImageAttributesFuncPtr) (ScrnInfoPtr pScrn, int image,
|
||||||
unsigned short *width,
|
unsigned short *width,
|
||||||
unsigned short *height,
|
unsigned short *height,
|
||||||
int *pitches, int *offsets);
|
int *pitches, int *offsets);
|
||||||
typedef void (*ClipNotifyFuncPtr) (ScrnInfoPtr pScrn, void *data,
|
|
||||||
WindowPtr window, int dx, int dy);
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
XV_OFF,
|
XV_OFF,
|
||||||
|
@ -145,7 +143,6 @@ typedef struct {
|
||||||
PutImageFuncPtr PutImage;
|
PutImageFuncPtr PutImage;
|
||||||
ReputImageFuncPtr ReputImage; /* image/still */
|
ReputImageFuncPtr ReputImage; /* image/still */
|
||||||
QueryImageAttributesFuncPtr QueryImageAttributes;
|
QueryImageAttributesFuncPtr QueryImageAttributes;
|
||||||
ClipNotifyFuncPtr ClipNotify;
|
|
||||||
} XF86VideoAdaptorRec, *XF86VideoAdaptorPtr;
|
} XF86VideoAdaptorRec, *XF86VideoAdaptorPtr;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
|
@ -61,7 +61,6 @@ typedef struct {
|
||||||
PutImageFuncPtr PutImage;
|
PutImageFuncPtr PutImage;
|
||||||
ReputImageFuncPtr ReputImage;
|
ReputImageFuncPtr ReputImage;
|
||||||
QueryImageAttributesFuncPtr QueryImageAttributes;
|
QueryImageAttributesFuncPtr QueryImageAttributes;
|
||||||
ClipNotifyFuncPtr ClipNotify;
|
|
||||||
} XvAdaptorRecPrivate, *XvAdaptorRecPrivatePtr;
|
} XvAdaptorRecPrivate, *XvAdaptorRecPrivatePtr;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in New Issue