diff options
author | Tim Waugh <twaugh@redhat.com> | 2014-09-03 12:38:15 +0100 |
---|---|---|
committer | Tim Waugh <twaugh@redhat.com> | 2014-09-03 12:38:15 +0100 |
commit | d822c36525891becf2ca1574b8610e14899c0186 (patch) | |
tree | 2a13e6eeb5c26fa2a5f33309b649fb3ad9d7322e /unix/xserver/hw/vnc/vncHooks.cc | |
parent | eeaf67893cb8d4066cd37868818d0e35401d47de (diff) | |
download | tigervnc-d822c36525891becf2ca1574b8610e14899c0186.tar.gz tigervnc-d822c36525891becf2ca1574b8610e14899c0186.zip |
Updated to build against xorg-x11-server 1.16.0.
Diffstat (limited to 'unix/xserver/hw/vnc/vncHooks.cc')
-rw-r--r-- | unix/xserver/hw/vnc/vncHooks.cc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/unix/xserver/hw/vnc/vncHooks.cc b/unix/xserver/hw/vnc/vncHooks.cc index 94693872..29de4c4c 100644 --- a/unix/xserver/hw/vnc/vncHooks.cc +++ b/unix/xserver/hw/vnc/vncHooks.cc @@ -89,8 +89,8 @@ typedef struct { } vncHooksScreenRec, *vncHooksScreenPtr; typedef struct { - GCFuncs *wrappedFuncs; - GCOps *wrappedOps; + const GCFuncs *wrappedFuncs; + const GCOps *wrappedOps; } vncHooksGCRec, *vncHooksGCPtr; #if XORG == 15 @@ -139,8 +139,8 @@ static Bool vncHooksDisplayCursor( static void vncHooksBlockHandler(int i, pointer blockData, pointer pTimeout, pointer pReadmask); #else -static void vncHooksBlockHandler(ScreenPtr pScreen, pointer pTimeout, - pointer pReadmask); +static void vncHooksBlockHandler(ScreenPtr pScreen, void * pTimeout, + void * pReadmask); #endif #ifdef RENDER static void vncHooksComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, @@ -169,7 +169,7 @@ static void vncHooksValidateGC(GCPtr pGC, unsigned long changes, static void vncHooksChangeGC(GCPtr pGC, unsigned long mask); static void vncHooksCopyGC(GCPtr src, unsigned long mask, GCPtr dst); static void vncHooksDestroyGC(GCPtr pGC); -static void vncHooksChangeClip(GCPtr pGC, int type, pointer pValue,int nrects); +static void vncHooksChangeClip(GCPtr pGC, int type, void * pValue,int nrects); static void vncHooksDestroyClip(GCPtr pGC); static void vncHooksCopyClip(GCPtr dst, GCPtr src); @@ -221,10 +221,10 @@ static void vncHooksImageText16(DrawablePtr pDrawable, GCPtr pGC, int x, int y, int count, unsigned short *chars); static void vncHooksImageGlyphBlt(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, - CharInfoPtr *ppci, pointer pglyphBase); + CharInfoPtr *ppci, void * pglyphBase); static void vncHooksPolyGlyphBlt(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, - CharInfoPtr *ppci, pointer pglyphBase); + CharInfoPtr *ppci, void * pglyphBase); static void vncHooksPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr pDrawable, int w, int h, int x, int y); @@ -540,8 +540,8 @@ static Bool vncHooksDisplayCursor( static void vncHooksBlockHandler(int i, pointer blockData, pointer pTimeout, pointer pReadmask) #else -static void vncHooksBlockHandler(ScreenPtr pScreen_, pointer pTimeout, - pointer pReadmask) +static void vncHooksBlockHandler(ScreenPtr pScreen_, void * pTimeout, + void * pReadmask) #endif { #if XORG <= 112 @@ -876,7 +876,7 @@ static void vncHooksDestroyGC(GCPtr pGC) { GCFuncUnwrapper u(pGC); (*pGC->funcs->DestroyGC) (pGC); } -static void vncHooksChangeClip(GCPtr pGC, int type, pointer pValue, int nrects) +static void vncHooksChangeClip(GCPtr pGC, int type, void * pValue, int nrects) { GCFuncUnwrapper u(pGC); (*pGC->funcs->ChangeClip) (pGC, type, pValue, nrects); @@ -916,7 +916,7 @@ public: } GCPtr pGC; vncHooksGCPtr vncHooksGC; - GCFuncs* oldFuncs; + const GCFuncs* oldFuncs; ScreenPtr pScreen; }; @@ -1755,7 +1755,7 @@ static void vncHooksImageText16(DrawablePtr pDrawable, GCPtr pGC, int x, int y, static void vncHooksImageGlyphBlt(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, - CharInfoPtr *ppci, pointer pglyphBase) + CharInfoPtr *ppci, void * pglyphBase) { GC_OP_UNWRAPPER(pDrawable, pGC, ImageGlyphBlt); @@ -1781,7 +1781,7 @@ static void vncHooksImageGlyphBlt(DrawablePtr pDrawable, GCPtr pGC, int x, static void vncHooksPolyGlyphBlt(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, - CharInfoPtr *ppci, pointer pglyphBase) + CharInfoPtr *ppci, void * pglyphBase) { GC_OP_UNWRAPPER(pDrawable, pGC, PolyGlyphBlt); |