aboutsummaryrefslogtreecommitdiffstats
path: root/unix/xserver/hw/vnc/vncHooks.c
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-09-14 14:38:29 +0200
committerPierre Ossman <ossman@cendio.se>2015-09-14 14:38:29 +0200
commit1ba66612eb20598542144aafc4913028c2a65224 (patch)
tree81c439108cb9b3b8bb813814e743eb5049b39ac7 /unix/xserver/hw/vnc/vncHooks.c
parent7213a8b1b40c80cf965c2becbd573d382b59b1ac (diff)
downloadtigervnc-1ba66612eb20598542144aafc4913028c2a65224.tar.gz
tigervnc-1ba66612eb20598542144aafc4913028c2a65224.zip
Make vncHooksComposite() and vncHooksGlyphs() static
They should never have been global symbols to begin with.
Diffstat (limited to 'unix/xserver/hw/vnc/vncHooks.c')
-rw-r--r--unix/xserver/hw/vnc/vncHooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/xserver/hw/vnc/vncHooks.c b/unix/xserver/hw/vnc/vncHooks.c
index bbf34e7e..9ab6febc 100644
--- a/unix/xserver/hw/vnc/vncHooks.c
+++ b/unix/xserver/hw/vnc/vncHooks.c
@@ -715,7 +715,7 @@ static void vncHooksBlockHandler(ScreenPtr pScreen_, void * pTimeout,
// Composite - The core of XRENDER
-void vncHooksComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask,
+static void vncHooksComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask,
PicturePtr pDst, INT16 xSrc, INT16 ySrc, INT16 xMask,
INT16 yMask, INT16 xDst, INT16 yDst, CARD16 width, CARD16 height)
{
@@ -801,7 +801,7 @@ GlyphsToRegion(ScreenPtr pScreen, int nlist, GlyphListPtr list, GlyphPtr *glyphs
// Glyphs - Glyph specific version of Composite (caches and whatnot)
-void vncHooksGlyphs(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
+static void vncHooksGlyphs(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc, int nlists,
GlyphListPtr lists, GlyphPtr * glyphs)
{