Commit 616d8619 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

nxagent: treat all Traps as Booleans everywhere

parent c3b6dfe2
...@@ -1075,7 +1075,7 @@ static void nxagentParseSingleOption(char *name, char *value) ...@@ -1075,7 +1075,7 @@ static void nxagentParseSingleOption(char *name, char *value)
} }
else if (!strcmp(name, "render")) else if (!strcmp(name, "render"))
{ {
if (nxagentReconnectTrap == True) if (nxagentReconnectTrap)
{ {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'render' at reconnection.\n"); fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'render' at reconnection.\n");
...@@ -1106,7 +1106,7 @@ static void nxagentParseSingleOption(char *name, char *value) ...@@ -1106,7 +1106,7 @@ static void nxagentParseSingleOption(char *name, char *value)
} }
else if (!strcmp(name, "fullscreen")) else if (!strcmp(name, "fullscreen"))
{ {
if (nxagentReconnectTrap == True) if (nxagentReconnectTrap)
{ {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'fullscreen' at reconnection.\n"); fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'fullscreen' at reconnection.\n");
...@@ -1268,7 +1268,7 @@ static void nxagentParseSingleOption(char *name, char *value) ...@@ -1268,7 +1268,7 @@ static void nxagentParseSingleOption(char *name, char *value)
} }
else if (!strcmp(name, "autodpi")) else if (!strcmp(name, "autodpi"))
{ {
if (nxagentReconnectTrap == True) if (nxagentReconnectTrap)
{ {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'autodpi' at reconnection.\n"); fprintf(stderr, "nxagentParseSingleOption: Ignoring option 'autodpi' at reconnection.\n");
......
...@@ -1571,7 +1571,7 @@ void nxagentSetSelectionCallback(CallbackListPtr *callbacks, void *data, ...@@ -1571,7 +1571,7 @@ void nxagentSetSelectionCallback(CallbackListPtr *callbacks, void *data,
* way to identify that situation during callback processing we * way to identify that situation during callback processing we
* could get rid of the Trap... * could get rid of the Trap...
*/ */
if (nxagentExternalClipboardEventTrap != 0) if (nxagentExternalClipboardEventTrap)
{ {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "%s: Trap is set, doing nothing\n", __func__); fprintf(stderr, "%s: Trap is set, doing nothing\n", __func__);
......
...@@ -144,7 +144,7 @@ int nxagentSynchronizeDrawable(DrawablePtr pDrawable, int wait, unsigned int bre ...@@ -144,7 +144,7 @@ int nxagentSynchronizeDrawable(DrawablePtr pDrawable, int wait, unsigned int bre
{ {
pDrawable = nxagentSplitDrawable(pDrawable); pDrawable = nxagentSplitDrawable(pDrawable);
if (nxagentLosslessTrap == 0) if (!nxagentLosslessTrap)
{ {
if (nxagentDrawableStatus(pDrawable) == Synchronized) if (nxagentDrawableStatus(pDrawable) == Synchronized)
{ {
...@@ -257,7 +257,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask ...@@ -257,7 +257,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask
* copy with lossless compression turned off. * copy with lossless compression turned off.
*/ */
if (nxagentLosslessTrap == 1) if (nxagentLosslessTrap)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "%s: Forcing synchronization of pixmap at [%p] with lossless compression.\n", fprintf(stderr, "%s: Forcing synchronization of pixmap at [%p] with lossless compression.\n",
...@@ -266,7 +266,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask ...@@ -266,7 +266,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask
return reallySynchronizeDrawableData(pDrawable); return reallySynchronizeDrawableData(pDrawable);
} }
else if (nxagentReconnectTrap == 1) else if (nxagentReconnectTrap)
{ {
/* /*
* The pixmap data is not synchronized unless we need it. We * The pixmap data is not synchronized unless we need it. We
...@@ -277,7 +277,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask ...@@ -277,7 +277,7 @@ int nxagentSynchronizeDrawableData(DrawablePtr pDrawable, unsigned int breakMask
if (pDrawable -> depth == 1) if (pDrawable -> depth == 1)
{ {
#ifdef TEST #ifdef TEST
if (nxagentReconnectTrap == 1) if (nxagentReconnectTrap)
{ {
static int totalLength; static int totalLength;
static int totalReconnectedPixmaps; static int totalReconnectedPixmaps;
......
...@@ -317,7 +317,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask) ...@@ -317,7 +317,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask)
else else
{ {
if (nxagentDrawableStatus((DrawablePtr) pGC -> tile.pixmap) == NotSynchronized && if (nxagentDrawableStatus((DrawablePtr) pGC -> tile.pixmap) == NotSynchronized &&
nxagentGCTrap == 0) !nxagentGCTrap)
{ {
/* /*
* If the tile is corrupted and is not too large, it can be * If the tile is corrupted and is not too large, it can be
...@@ -367,7 +367,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask) ...@@ -367,7 +367,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask)
if (mask & GCStipple) if (mask & GCStipple)
{ {
if (nxagentDrawableStatus((DrawablePtr) pGC -> stipple) == NotSynchronized && if (nxagentDrawableStatus((DrawablePtr) pGC -> stipple) == NotSynchronized &&
nxagentGCTrap == 0) !nxagentGCTrap)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentChangeGC: WARNING! Synchronizing GC at [%p] due the stipple at [%p].\n", fprintf(stderr, "nxagentChangeGC: WARNING! Synchronizing GC at [%p] due the stipple at [%p].\n",
...@@ -425,7 +425,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask) ...@@ -425,7 +425,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask)
{ {
mask &= ~GCDashList; mask &= ~GCDashList;
if (nxagentGCTrap == 0) if (!nxagentGCTrap)
{ {
XSetDashes(nxagentDisplay, nxagentGC(pGC), XSetDashes(nxagentDisplay, nxagentGC(pGC),
pGC->dashOffset, (char *)pGC->dash, pGC->numInDashList); pGC->dashOffset, (char *)pGC->dash, pGC->numInDashList);
...@@ -434,7 +434,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask) ...@@ -434,7 +434,7 @@ void nxagentChangeGC(GCPtr pGC, unsigned long mask)
CHECKGCVAL(GCArcMode, arc_mode, pGC->arcMode); CHECKGCVAL(GCArcMode, arc_mode, pGC->arcMode);
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentChangeGC: Skipping change of GC at [%p] on the real X server.\n", fprintf(stderr, "nxagentChangeGC: Skipping change of GC at [%p] on the real X server.\n",
...@@ -544,7 +544,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -544,7 +544,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
{ {
case CT_NONE: case CT_NONE:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XSetClipMask(nxagentDisplay, nxagentGC(pGC), None); XSetClipMask(nxagentDisplay, nxagentGC(pGC), None);
} }
...@@ -552,7 +552,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -552,7 +552,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_REGION: case CT_REGION:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XRectangle *pRects; XRectangle *pRects;
nRects = RegionNumRects((RegionPtr)pValue); nRects = RegionNumRects((RegionPtr)pValue);
...@@ -576,7 +576,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -576,7 +576,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_PIXMAP: case CT_PIXMAP:
{ {
if (nxagentGCTrap == 0) if (!nxagentGCTrap)
{ {
XSetClipMask(nxagentDisplay, nxagentGC(pGC), XSetClipMask(nxagentDisplay, nxagentGC(pGC),
nxagentPixmap((PixmapPtr)pValue)); nxagentPixmap((PixmapPtr)pValue));
...@@ -594,7 +594,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -594,7 +594,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_UNSORTED: case CT_UNSORTED:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XSetClipRectangles(nxagentDisplay, nxagentGC(pGC), XSetClipRectangles(nxagentDisplay, nxagentGC(pGC),
pGC->clipOrg.x, pGC->clipOrg.y, pGC->clipOrg.x, pGC->clipOrg.y,
...@@ -604,7 +604,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -604,7 +604,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_YSORTED: case CT_YSORTED:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XSetClipRectangles(nxagentDisplay, nxagentGC(pGC), XSetClipRectangles(nxagentDisplay, nxagentGC(pGC),
pGC->clipOrg.x, pGC->clipOrg.y, pGC->clipOrg.x, pGC->clipOrg.y,
...@@ -614,7 +614,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -614,7 +614,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_YXSORTED: case CT_YXSORTED:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XSetClipRectangles(nxagentDisplay, nxagentGC(pGC), XSetClipRectangles(nxagentDisplay, nxagentGC(pGC),
pGC->clipOrg.x, pGC->clipOrg.y, pGC->clipOrg.x, pGC->clipOrg.y,
...@@ -624,7 +624,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects) ...@@ -624,7 +624,7 @@ void nxagentChangeClip(GCPtr pGC, int type, void * pValue, int nRects)
} }
case CT_YXBANDED: case CT_YXBANDED:
{ {
if (clipsMatch == 0 && nxagentGCTrap == 0) if (clipsMatch == 0 && !nxagentGCTrap)
{ {
XSetClipRectangles(nxagentDisplay, nxagentGC(pGC), XSetClipRectangles(nxagentDisplay, nxagentGC(pGC),
pGC->clipOrg.x, pGC->clipOrg.y, pGC->clipOrg.x, pGC->clipOrg.y,
...@@ -679,7 +679,7 @@ void nxagentDestroyClip(GCPtr pGC) ...@@ -679,7 +679,7 @@ void nxagentDestroyClip(GCPtr pGC)
nxagentDestroyClipHelper(pGC); nxagentDestroyClipHelper(pGC);
if (nxagentGCTrap == 0) if (!nxagentGCTrap)
{ {
XSetClipMask(nxagentDisplay, nxagentGC(pGC), None); XSetClipMask(nxagentDisplay, nxagentGC(pGC), None);
} }
......
...@@ -664,7 +664,7 @@ RegionPtr nxagentCopyArea(DrawablePtr pSrcDrawable, DrawablePtr pDstDrawable, ...@@ -664,7 +664,7 @@ RegionPtr nxagentCopyArea(DrawablePtr pSrcDrawable, DrawablePtr pDstDrawable,
} }
if (nxagentGCTrap == 1 || nxagentShmTrap == 1) if (nxagentGCTrap || nxagentShmTrap)
{ {
if (pSrcDrawable -> type == DRAWABLE_PIXMAP && if (pSrcDrawable -> type == DRAWABLE_PIXMAP &&
pDstDrawable -> type == DRAWABLE_PIXMAP) pDstDrawable -> type == DRAWABLE_PIXMAP)
...@@ -890,7 +890,7 @@ RegionPtr nxagentCopyPlane(DrawablePtr pSrcDrawable, DrawablePtr pDstDrawable, ...@@ -890,7 +890,7 @@ RegionPtr nxagentCopyPlane(DrawablePtr pSrcDrawable, DrawablePtr pDstDrawable,
(void *) pDstDrawable, srcx, srcy, dstx, dsty, width, height); (void *) pDstDrawable, srcx, srcy, dstx, dsty, width, height);
#endif #endif
if (nxagentGCTrap == 1 || nxagentShmTrap == 1) if (nxagentGCTrap || nxagentShmTrap)
{ {
if (pSrcDrawable -> type == DRAWABLE_PIXMAP && if (pSrcDrawable -> type == DRAWABLE_PIXMAP &&
pDstDrawable -> type == DRAWABLE_PIXMAP) pDstDrawable -> type == DRAWABLE_PIXMAP)
...@@ -1073,7 +1073,7 @@ void nxagentPolyPoint(DrawablePtr pDrawable, GCPtr pGC, int mode, ...@@ -1073,7 +1073,7 @@ void nxagentPolyPoint(DrawablePtr pDrawable, GCPtr pGC, int mode,
(void *) pDrawable, (void *) pGC, nPoints); (void *) pDrawable, (void *) pGC, nPoints);
#endif #endif
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1130,7 +1130,7 @@ void nxagentPolyPoint(DrawablePtr pDrawable, GCPtr pGC, int mode, ...@@ -1130,7 +1130,7 @@ void nxagentPolyPoint(DrawablePtr pDrawable, GCPtr pGC, int mode,
void nxagentPolyLines(DrawablePtr pDrawable, GCPtr pGC, int mode, void nxagentPolyLines(DrawablePtr pDrawable, GCPtr pGC, int mode,
int nPoints, xPoint *pPoints) int nPoints, xPoint *pPoints)
{ {
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1203,7 +1203,7 @@ void nxagentPolySegment(DrawablePtr pDrawable, GCPtr pGC, ...@@ -1203,7 +1203,7 @@ void nxagentPolySegment(DrawablePtr pDrawable, GCPtr pGC,
#endif #endif
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1280,7 +1280,7 @@ void nxagentPolyRectangle(DrawablePtr pDrawable, GCPtr pGC, ...@@ -1280,7 +1280,7 @@ void nxagentPolyRectangle(DrawablePtr pDrawable, GCPtr pGC,
#endif #endif
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1345,7 +1345,7 @@ void nxagentPolyRectangle(DrawablePtr pDrawable, GCPtr pGC, ...@@ -1345,7 +1345,7 @@ void nxagentPolyRectangle(DrawablePtr pDrawable, GCPtr pGC,
void nxagentPolyArc(DrawablePtr pDrawable, GCPtr pGC, void nxagentPolyArc(DrawablePtr pDrawable, GCPtr pGC,
int nArcs, xArc *pArcs) int nArcs, xArc *pArcs)
{ {
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1404,7 +1404,7 @@ void nxagentFillPolygon(DrawablePtr pDrawable, GCPtr pGC, int shape, ...@@ -1404,7 +1404,7 @@ void nxagentFillPolygon(DrawablePtr pDrawable, GCPtr pGC, int shape,
{ {
xPoint *newPoints = NULL; xPoint *newPoints = NULL;
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1518,7 +1518,7 @@ void nxagentPolyFillRect(DrawablePtr pDrawable, GCPtr pGC, ...@@ -1518,7 +1518,7 @@ void nxagentPolyFillRect(DrawablePtr pDrawable, GCPtr pGC,
#endif #endif
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1663,7 +1663,7 @@ void nxagentPolyFillRect(DrawablePtr pDrawable, GCPtr pGC, ...@@ -1663,7 +1663,7 @@ void nxagentPolyFillRect(DrawablePtr pDrawable, GCPtr pGC,
void nxagentPolyFillArc(DrawablePtr pDrawable, GCPtr pGC, void nxagentPolyFillArc(DrawablePtr pDrawable, GCPtr pGC,
int nArcs, xArc *pArcs) int nArcs, xArc *pArcs)
{ {
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1739,7 +1739,7 @@ int nxagentPolyText8(DrawablePtr pDrawable, GCPtr pGC, int x, ...@@ -1739,7 +1739,7 @@ int nxagentPolyText8(DrawablePtr pDrawable, GCPtr pGC, int x,
int width = XTextWidth(nxagentFontStruct(pGC->font), string, count); int width = XTextWidth(nxagentFontStruct(pGC->font), string, count);
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1809,7 +1809,7 @@ int nxagentPolyText16(DrawablePtr pDrawable, GCPtr pGC, int x, ...@@ -1809,7 +1809,7 @@ int nxagentPolyText16(DrawablePtr pDrawable, GCPtr pGC, int x,
int width = XTextWidth16(nxagentFontStruct(pGC->font), (XChar2b *)string, count); int width = XTextWidth16(nxagentFontStruct(pGC->font), (XChar2b *)string, count);
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1868,7 +1868,7 @@ int nxagentPolyText16(DrawablePtr pDrawable, GCPtr pGC, int x, ...@@ -1868,7 +1868,7 @@ int nxagentPolyText16(DrawablePtr pDrawable, GCPtr pGC, int x,
void nxagentImageText8(DrawablePtr pDrawable, GCPtr pGC, int x, void nxagentImageText8(DrawablePtr pDrawable, GCPtr pGC, int x,
int y, int count, char *string) int y, int count, char *string)
{ {
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
...@@ -1925,7 +1925,7 @@ void nxagentImageText8(DrawablePtr pDrawable, GCPtr pGC, int x, ...@@ -1925,7 +1925,7 @@ void nxagentImageText8(DrawablePtr pDrawable, GCPtr pGC, int x,
void nxagentImageText16(DrawablePtr pDrawable, GCPtr pGC, int x, void nxagentImageText16(DrawablePtr pDrawable, GCPtr pGC, int x,
int y, int count, unsigned short *string) int y, int count, unsigned short *string)
{ {
if (nxagentGCTrap == 1) if (nxagentGCTrap)
{ {
if ((pDrawable)->type == DRAWABLE_PIXMAP) if ((pDrawable)->type == DRAWABLE_PIXMAP)
{ {
......
...@@ -403,7 +403,7 @@ FIXME: Here the split trap is always set and so the caching of the ...@@ -403,7 +403,7 @@ FIXME: Here the split trap is always set and so the caching of the
resource, nxagentSplitTrap); resource, nxagentSplitTrap);
#endif #endif
if (nxagentSplitTrap == 1 || nxagentUnpackAlpha[resource] == NULL || if (nxagentSplitTrap || nxagentUnpackAlpha[resource] == NULL ||
nxagentUnpackAlpha[resource] -> size != size || nxagentUnpackAlpha[resource] -> size != size ||
memcmp(nxagentUnpackAlpha[resource] -> data, data, size) != 0) memcmp(nxagentUnpackAlpha[resource] -> data, data, size) != 0)
{ {
...@@ -562,8 +562,8 @@ FIXME: Should use these. ...@@ -562,8 +562,8 @@ FIXME: Should use these.
int framebuffer = 1; int framebuffer = 1;
int realize = 1; int realize = 1;
*/ */
if (nxagentGCTrap == 1 && nxagentReconnectTrap == 0 && if (nxagentGCTrap && !nxagentReconnectTrap &&
nxagentFBTrap == 0 && nxagentShmTrap == 0) !nxagentFBTrap && !nxagentShmTrap)
{ {
if (pDrawable -> type == DRAWABLE_PIXMAP) if (pDrawable -> type == DRAWABLE_PIXMAP)
{ {
...@@ -579,11 +579,11 @@ FIXME: Should use these. ...@@ -579,11 +579,11 @@ FIXME: Should use these.
goto nxagentPutImageEnd; goto nxagentPutImageEnd;
} }
if (nxagentReconnectTrap == 0 && if (!nxagentReconnectTrap &&
nxagentSplitTrap == 0) !nxagentSplitTrap)
{ {
if (pDrawable -> type == DRAWABLE_PIXMAP && if (pDrawable -> type == DRAWABLE_PIXMAP &&
nxagentFBTrap == 0 && nxagentShmTrap == 0) !nxagentFBTrap && !nxagentShmTrap)
{ {
fbPutImage(nxagentVirtualDrawable(pDrawable), pGC, depth, fbPutImage(nxagentVirtualDrawable(pDrawable), pGC, depth,
dstX, dstY, dstWidth, dstHeight, leftPad, format, data); dstX, dstY, dstWidth, dstHeight, leftPad, format, data);
...@@ -683,8 +683,8 @@ FIXME: Do we stream the images from GLX or Xv? If we do that, we ...@@ -683,8 +683,8 @@ FIXME: Do we stream the images from GLX or Xv? If we do that, we
/* /*
FIXME: Temporarily stream the GLX data. FIXME: Temporarily stream the GLX data.
&& nxagentGlxTrap == 0 && !nxagentGlxTrap
&& nxagentXvTrap == 0 && !nxagentXvTrap
*/ */
); );
...@@ -692,11 +692,11 @@ FIXME: Temporarily stream the GLX data. ...@@ -692,11 +692,11 @@ FIXME: Temporarily stream the GLX data.
* Never split images whose depth is less than 15. * Never split images whose depth is less than 15.
*/ */
if (split == 1 && (nxagentSplitTrap == 1 || depth < 15)) if (split == 1 && (nxagentSplitTrap || depth < 15))
{ {
#ifdef TEST #ifdef TEST
if (nxagentSplitTrap == 1 || if (nxagentSplitTrap ||
nxagentReconnectTrap == 1) nxagentReconnectTrap)
{ {
fprintf(stderr, "nxagentPutImage: Not splitting with reconnection [%d] trap [%d] " fprintf(stderr, "nxagentPutImage: Not splitting with reconnection [%d] trap [%d] "
"depth [%d].\n", nxagentSplitTrap, nxagentReconnectTrap, depth); "depth [%d].\n", nxagentSplitTrap, nxagentReconnectTrap, depth);
...@@ -734,7 +734,7 @@ FIXME: Temporarily stream the GLX data. ...@@ -734,7 +734,7 @@ FIXME: Temporarily stream the GLX data.
*/ */
if (nxagentOption(LinkType) != LINK_TYPE_NONE && if (nxagentOption(LinkType) != LINK_TYPE_NONE &&
(nxagentGlxTrap == 1 || nxagentXvTrap == 1)) (nxagentGlxTrap || nxagentXvTrap))
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentPutImage: Disabling the use of the cache with GLX or Xvideo.\n"); fprintf(stderr, "nxagentPutImage: Disabling the use of the cache with GLX or Xvideo.\n");
...@@ -1145,7 +1145,7 @@ FIXME: Should use an unpack resource here. ...@@ -1145,7 +1145,7 @@ FIXME: Should use an unpack resource here.
if (w <= IMAGE_PACK_WIDTH || h <= IMAGE_PACK_HEIGHT || if (w <= IMAGE_PACK_WIDTH || h <= IMAGE_PACK_HEIGHT ||
nxagentImageLength(w, h, format, leftPad, depth) <= nxagentImageLength(w, h, format, leftPad, depth) <=
IMAGE_PACK_LENGTH || nxagentLosslessTrap == 1) IMAGE_PACK_LENGTH || nxagentLosslessTrap)
{ {
if (nxagentPackLossless == PACK_NONE) if (nxagentPackLossless == PACK_NONE)
{ {
...@@ -1219,8 +1219,8 @@ FIXME: Should try to locate the image anyway, if the lossless trap is ...@@ -1219,8 +1219,8 @@ FIXME: Should try to locate the image anyway, if the lossless trap is
method. method.
*/ */
if (nxagentNeedCache(plainImage, packMethod) && if (nxagentNeedCache(plainImage, packMethod) &&
nxagentGlxTrap == 0 && nxagentXvTrap == 0 && !nxagentGlxTrap && !nxagentXvTrap &&
nxagentLosslessTrap == 0 && NXImageCacheSize > 0) !nxagentLosslessTrap && NXImageCacheSize > 0)
{ {
/* /*
* Be sure that the padding bits are cleaned before calculating * Be sure that the padding bits are cleaned before calculating
......
...@@ -392,7 +392,7 @@ ConfigureWindow(register WindowPtr pWin, register Mask mask, XID *vlist, ClientP ...@@ -392,7 +392,7 @@ ConfigureWindow(register WindowPtr pWin, register Mask mask, XID *vlist, ClientP
if (nxagentOption(Rootless) && nxagentWindowTopLevel(pWin) && if (nxagentOption(Rootless) && nxagentWindowTopLevel(pWin) &&
pWin -> overrideRedirect == 0 && pWin -> overrideRedirect == 0 &&
nxagentScreenTrap == 0) !nxagentScreenTrap)
{ {
nxagentConfigureRootlessWindow(pWin, x, y, w, h, bw, pSib, smode, mask); nxagentConfigureRootlessWindow(pWin, x, y, w, h, bw, pSib, smode, mask);
......
...@@ -145,7 +145,7 @@ FIXME: Changed macro: NXAGENT_SHOULD_DEFER_COMPOSITE ...@@ -145,7 +145,7 @@ FIXME: Changed macro: NXAGENT_SHOULD_DEFER_COMPOSITE
#define NXAGENT_SHOULD_DEFER_PUTIMAGE(pDrawable) \ #define NXAGENT_SHOULD_DEFER_PUTIMAGE(pDrawable) \
(nxagentSplitTrap == 0 && \ (!nxagentSplitTrap && \
nxagentOption(DeferLevel) > 0) nxagentOption(DeferLevel) > 0)
/* /*
......
...@@ -200,7 +200,7 @@ PixmapPtr nxagentCreatePixmap(ScreenPtr pScreen, int width, int height, ...@@ -200,7 +200,7 @@ PixmapPtr nxagentCreatePixmap(ScreenPtr pScreen, int width, int height,
* checksum. * checksum.
*/ */
if (width != 0 && height != 0 && nxagentGCTrap == 0) if (width != 0 && height != 0 && !nxagentGCTrap)
{ {
pPixmapPriv -> id = XCreatePixmap(nxagentDisplay, pPixmapPriv -> id = XCreatePixmap(nxagentDisplay,
nxagentDefaultWindows[pScreen -> myNum], nxagentDefaultWindows[pScreen -> myNum],
......
...@@ -2252,7 +2252,7 @@ void nxagentReconnectGlyphSet(void* p0, XID x1, void *p2) ...@@ -2252,7 +2252,7 @@ void nxagentReconnectGlyphSet(void* p0, XID x1, void *p2)
{ {
GlyphSetPtr pGly = (GlyphSetPtr) p0; GlyphSetPtr pGly = (GlyphSetPtr) p0;
if (nxagentReconnectTrap == 0) if (!nxagentReconnectTrap)
{ {
int i; int i;
XRenderPictFormat *pForm = NULL; XRenderPictFormat *pForm = NULL;
......
...@@ -849,7 +849,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -849,7 +849,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
pScreen->myNum); pScreen->myNum);
#endif #endif
if (nxagentRenderEnable && nxagentReconnectTrap == False) if (nxagentRenderEnable && !nxagentReconnectTrap)
{ {
PictureScreenPrivateIndex = -1; PictureScreenPrivateIndex = -1;
} }
...@@ -904,7 +904,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -904,7 +904,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
* user geometry then. * user geometry then.
*/ */
if (nxagentReconnectTrap == False && !nxagentOption(Rootless)) if (!nxagentReconnectTrap && !nxagentOption(Rootless))
{ {
if (nxagentUserGeometry.flag & XValue) if (nxagentUserGeometry.flag & XValue)
{ {
...@@ -957,7 +957,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -957,7 +957,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
nxagentChangeOption(Fullscreen, True); nxagentChangeOption(Fullscreen, True);
if (nxagentOption(ClientOs) == ClientOsWinnt && if (nxagentOption(ClientOs) == ClientOsWinnt &&
(nxagentReconnectTrap == False || nxagentResizeDesktopAtStartup)) (!nxagentReconnectTrap || nxagentResizeDesktopAtStartup))
{ {
NXSetExposeParameters(nxagentDisplay, 0, 0, 0); NXSetExposeParameters(nxagentDisplay, 0, 0, 0);
} }
...@@ -996,7 +996,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -996,7 +996,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
nxagentChangeOption(Height, h); nxagentChangeOption(Height, h);
/* first time screen initialization or resize during reconnect */ /* first time screen initialization or resize during reconnect */
if (nxagentReconnectTrap == False || nxagentResizeDesktopAtStartup) if (!nxagentReconnectTrap || nxagentResizeDesktopAtStartup)
{ {
if (nxagentOption(RootWidth) >= w) if (nxagentOption(RootWidth) >= w)
{ {
...@@ -1049,7 +1049,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -1049,7 +1049,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
* screen is initialized for the first time. * screen is initialized for the first time.
*/ */
if (nxagentReconnectTrap == False) if (!nxagentReconnectTrap)
{ {
nxagentChangeOption(RootX, 0); nxagentChangeOption(RootX, 0);
nxagentChangeOption(RootY, 0); nxagentChangeOption(RootY, 0);
...@@ -1088,7 +1088,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -1088,7 +1088,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
* the root window isn't bigger than the X server root window.. * the root window isn't bigger than the X server root window..
*/ */
if (nxagentReconnectTrap == False) if (!nxagentReconnectTrap)
{ {
if ((nxagentOption(RootWidth) < w) && if ((nxagentOption(RootWidth) < w) &&
!(nxagentUserGeometry.flag & WidthValue)) !(nxagentUserGeometry.flag & WidthValue))
...@@ -1120,7 +1120,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[]) ...@@ -1120,7 +1120,7 @@ Bool nxagentOpenScreen(ScreenPtr pScreen, int argc, char *argv[])
nxagentChangeOption(ViewportXSpan, nxagentOption(Width) - nxagentOption(RootWidth)); nxagentChangeOption(ViewportXSpan, nxagentOption(Width) - nxagentOption(RootWidth));
nxagentChangeOption(ViewportYSpan, nxagentOption(Height) - nxagentOption(RootHeight)); nxagentChangeOption(ViewportYSpan, nxagentOption(Height) - nxagentOption(RootHeight));
if (nxagentReconnectTrap == 0) if (!nxagentReconnectTrap)
{ {
if (nxagentOption(Persistent)) if (nxagentOption(Persistent))
{ {
...@@ -1658,7 +1658,7 @@ N/A ...@@ -1658,7 +1658,7 @@ N/A
#endif #endif
if (nxagentDoFullGeneration == 1 || if (nxagentDoFullGeneration == 1 ||
nxagentReconnectTrap == 1) nxagentReconnectTrap)
{ {
unsigned long valuemask = CWBackPixel | CWEventMask | CWColormap; unsigned long valuemask = CWBackPixel | CWEventMask | CWColormap;
XSetWindowAttributes attributes = { XSetWindowAttributes attributes = {
......
...@@ -548,7 +548,7 @@ Bool nxagentDestroyWindow(WindowPtr pWin) ...@@ -548,7 +548,7 @@ Bool nxagentDestroyWindow(WindowPtr pWin)
{ {
nxagentPrivWindowPtr pWindowPriv; nxagentPrivWindowPtr pWindowPriv;
if (nxagentScreenTrap == 1) if (nxagentScreenTrap)
{ {
return 1; return 1;
} }
...@@ -672,7 +672,7 @@ Bool nxagentDestroyWindow(WindowPtr pWin) ...@@ -672,7 +672,7 @@ Bool nxagentDestroyWindow(WindowPtr pWin)
*/ */
Bool nxagentPositionWindow(WindowPtr pWin, int x, int y) Bool nxagentPositionWindow(WindowPtr pWin, int x, int y)
{ {
if (nxagentScreenTrap == 1) if (nxagentScreenTrap)
{ {
return True; return True;
} }
...@@ -690,7 +690,7 @@ Bool nxagentPositionWindow(WindowPtr pWin, int x, int y) ...@@ -690,7 +690,7 @@ Bool nxagentPositionWindow(WindowPtr pWin, int x, int y)
void nxagentRestackWindow(WindowPtr pWin, WindowPtr pOldNextSib) void nxagentRestackWindow(WindowPtr pWin, WindowPtr pOldNextSib)
{ {
if (nxagentScreenTrap == 1) if (nxagentScreenTrap)
{ {
return; return;
} }
...@@ -1250,7 +1250,7 @@ void nxagentConfigureWindow(WindowPtr pWin, unsigned int mask) ...@@ -1250,7 +1250,7 @@ void nxagentConfigureWindow(WindowPtr pWin, unsigned int mask)
int offX = nxagentWindowPriv(pWin)->x - pWin->origin.x; int offX = nxagentWindowPriv(pWin)->x - pWin->origin.x;
int offY = nxagentWindowPriv(pWin)->y - pWin->origin.y; int offY = nxagentWindowPriv(pWin)->y - pWin->origin.y;
if (nxagentScreenTrap == 1) if (nxagentScreenTrap)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentConfigureWindow: WARNING: Called with the screen trap set.\n"); fprintf(stderr, "nxagentConfigureWindow: WARNING: Called with the screen trap set.\n");
...@@ -1877,7 +1877,7 @@ void nxagentSetWMState(WindowPtr pWin, CARD32 desired) ...@@ -1877,7 +1877,7 @@ void nxagentSetWMState(WindowPtr pWin, CARD32 desired)
-+ */ -+ */
Bool nxagentRealizeWindow(WindowPtr pWin) Bool nxagentRealizeWindow(WindowPtr pWin)
{ {
if (nxagentScreenTrap == 1) if (nxagentScreenTrap)
{ {
return True; return True;
} }
...@@ -2573,7 +2573,7 @@ void nxagentMapDefaultWindows(void) ...@@ -2573,7 +2573,7 @@ void nxagentMapDefaultWindows(void)
* nxagentReconnectAllWindows, after the Root Window is mapped. * nxagentReconnectAllWindows, after the Root Window is mapped.
*/ */
if (nxagentReconnectTrap == 0) if (!nxagentReconnectTrap)
{ {
XRaiseWindow(nxagentDisplay, nxagentInputWindows[pScreen->myNum]); XRaiseWindow(nxagentDisplay, nxagentInputWindows[pScreen->myNum]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment