diff options
author | Adam Jackson <ajax@redhat.com> | 2016-12-09 14:52:36 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-12-12 14:10:44 -0500 |
commit | a530dc2a62349d922de77a75786a3795102aec11 (patch) | |
tree | b628c01212cb8071eb51404c15bb37e6b1f269d1 | |
parent | 1ae09800863992cfb1d5d21c600e2bc29e3b6ab2 (diff) |
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>
-rw-r--r-- | miext/shadow/shadow.h | 5 | ||||
-rw-r--r-- | miext/shadow/shpacked.c | 6 | ||||
-rw-r--r-- | miext/shadow/shplanar.c | 12 | ||||
-rw-r--r-- | miext/shadow/shrotate.c | 6 |
4 files changed, 0 insertions, 29 deletions
diff --git a/miext/shadow/shadow.h b/miext/shadow/shadow.h index 0bbbe45b6..c9a4100c4 100644 --- a/miext/shadow/shadow.h +++ b/miext/shadow/shadow.h @@ -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_ */ diff --git a/miext/shadow/shpacked.c b/miext/shadow/shpacked.c index 5ef18f86d..34527bcc7 100644 --- a/miext/shadow/shpacked.c +++ b/miext/shadow/shpacked.c @@ -107,9 +107,3 @@ shadowUpdatePacked(ScreenPtr pScreen, shadowBufPtr pBuf) pbox++; } } - -shadowUpdateProc -shadowUpdatePackedWeak(void) -{ - return shadowUpdatePacked; -} diff --git a/miext/shadow/shplanar.c b/miext/shadow/shplanar.c index 4f6542cb6..cb5fc54c8 100644 --- a/miext/shadow/shplanar.c +++ b/miext/shadow/shplanar.c @@ -166,15 +166,3 @@ shadowUpdatePlanar4(ScreenPtr pScreen, shadowBufPtr pBuf) pbox++; } } - -shadowUpdateProc -shadowUpdatePlanar4Weak(void) -{ - return shadowUpdatePlanar4; -} - -shadowUpdateProc -shadowUpdatePlanar4x8Weak(void) -{ - return shadowUpdatePlanar4x8; -} diff --git a/miext/shadow/shrotate.c b/miext/shadow/shrotate.c index a0fc4ec4e..7dc471fe2 100644 --- a/miext/shadow/shrotate.c +++ b/miext/shadow/shrotate.c @@ -296,9 +296,3 @@ shadowUpdateRotatePacked(ScreenPtr pScreen, shadowBufPtr pBuf) } } } - -shadowUpdateProc -shadowUpdateRotatePackedWeak(void) -{ - return shadowUpdateRotatePacked; -} |