summaryrefslogtreecommitdiff
path: root/miext
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2016-12-09 14:52:36 -0500
committerAdam Jackson <ajax@redhat.com>2016-12-12 14:10:44 -0500
commita530dc2a62349d922de77a75786a3795102aec11 (patch)
treeb628c01212cb8071eb51404c15bb37e6b1f269d1 /miext
parent1ae09800863992cfb1d5d21c600e2bc29e3b6ab2 (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>
Diffstat (limited to 'miext')
-rw-r--r--miext/shadow/shadow.h5
-rw-r--r--miext/shadow/shpacked.c6
-rw-r--r--miext/shadow/shplanar.c12
-rw-r--r--miext/shadow/shrotate.c6
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;
-}