shadow: Remove indirection stubs
These are no longer used in the drivers. Signed-off-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
1ae0980086
commit
a530dc2a62
|
@ -161,9 +161,4 @@ extern _X_EXPORT void
|
|||
|
||||
typedef void (*shadowUpdateProc) (ScreenPtr, shadowBufPtr);
|
||||
|
||||
extern _X_EXPORT shadowUpdateProc shadowUpdatePackedWeak(void);
|
||||
extern _X_EXPORT shadowUpdateProc shadowUpdatePlanar4Weak(void);
|
||||
extern _X_EXPORT shadowUpdateProc shadowUpdatePlanar4x8Weak(void);
|
||||
extern _X_EXPORT shadowUpdateProc shadowUpdateRotatePackedWeak(void);
|
||||
|
||||
#endif /* _SHADOW_H_ */
|
||||
|
|
|
@ -107,9 +107,3 @@ shadowUpdatePacked(ScreenPtr pScreen, shadowBufPtr pBuf)
|
|||
pbox++;
|
||||
}
|
||||
}
|
||||
|
||||
shadowUpdateProc
|
||||
shadowUpdatePackedWeak(void)
|
||||
{
|
||||
return shadowUpdatePacked;
|
||||
}
|
||||
|
|
|
@ -166,15 +166,3 @@ shadowUpdatePlanar4(ScreenPtr pScreen, shadowBufPtr pBuf)
|
|||
pbox++;
|
||||
}
|
||||
}
|
||||
|
||||
shadowUpdateProc
|
||||
shadowUpdatePlanar4Weak(void)
|
||||
{
|
||||
return shadowUpdatePlanar4;
|
||||
}
|
||||
|
||||
shadowUpdateProc
|
||||
shadowUpdatePlanar4x8Weak(void)
|
||||
{
|
||||
return shadowUpdatePlanar4x8;
|
||||
}
|
||||
|
|
|
@ -296,9 +296,3 @@ shadowUpdateRotatePacked(ScreenPtr pScreen, shadowBufPtr pBuf)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
shadowUpdateProc
|
||||
shadowUpdateRotatePackedWeak(void)
|
||||
{
|
||||
return shadowUpdateRotatePacked;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue