aboutsummaryrefslogtreecommitdiff
path: root/nx-X11
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2020-12-31 00:43:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-01-15 16:38:11 +0100
commit1ed28c85be774d2283aa0c6815831d1a402cea89 (patch)
tree1c9e2d0db8c43136ed8a31bb78eaf88ba85ac57b /nx-X11
parentab83e4688b5787cad652f7d47092813e687161d7 (diff)
downloadnx-libs-1ed28c85be774d2283aa0c6815831d1a402cea89.tar.gz
nx-libs-1ed28c85be774d2283aa0c6815831d1a402cea89.tar.bz2
nx-libs-1ed28c85be774d2283aa0c6815831d1a402cea89.zip
Drawable.c: make abort flag a Boolean
Diffstat (limited to 'nx-X11')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Drawable.c32
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Drawable.h2
2 files changed, 17 insertions, 17 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Drawable.c b/nx-X11/programs/Xserver/hw/nxagent/Drawable.c
index dc4d15c80..ad896dd55 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Drawable.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Drawable.c
@@ -63,7 +63,7 @@
/*
* The rectangles composing a region are de- fragmented to reduce the
- * number of synch- ronizing PutImage's.
+ * number of synchronizing PutImage()s.
*/
#define ADVANCED_BOXES_DEFRAG
@@ -588,7 +588,7 @@ int nxagentSynchronizeRegion(DrawablePtr pDrawable, RegionPtr pRegion, unsigned
unsigned long now = GetTimeInMillis();
- nxagentSynchronization.abort = 0;
+ nxagentSynchronization.abort = False;
/*
* Going to split the updated region into small blocks.
@@ -652,7 +652,7 @@ int nxagentSynchronizeRegion(DrawablePtr pDrawable, RegionPtr pRegion, unsigned
"[%lu] ms elapsed.\n", elapsedTime);
#endif
- nxagentSynchronization.abort = 1;
+ nxagentSynchronization.abort = True;
goto nxagentSynchronizeRegionStop;
}
@@ -670,7 +670,7 @@ int nxagentSynchronizeRegion(DrawablePtr pDrawable, RegionPtr pRegion, unsigned
nxagentBlocking);
#endif
- nxagentSynchronization.abort = 1;
+ nxagentSynchronization.abort = True;
goto nxagentSynchronizeRegionStop;
}
@@ -687,7 +687,7 @@ int nxagentSynchronizeRegion(DrawablePtr pDrawable, RegionPtr pRegion, unsigned
nxagentCongestion);
#endif
- nxagentSynchronization.abort = 1;
+ nxagentSynchronization.abort = True;
goto nxagentSynchronizeRegionStop;
}
@@ -834,7 +834,7 @@ int nxagentSynchronizeRegion(DrawablePtr pDrawable, RegionPtr pRegion, unsigned
"new input events.\n");
#endif
- nxagentSynchronization.abort = 1;
+ nxagentSynchronization.abort = True;
goto nxagentSynchronizeRegionStop;
}
@@ -854,7 +854,7 @@ nxagentSynchronizeRegionStop:
if (!nxagentOption(Shadow))
{
- if (nxagentSynchronization.abort == 1)
+ if (nxagentSynchronization.abort)
{
/*
* Storing the pointer to the drawable we were synchronizing
@@ -1031,7 +1031,7 @@ void nxagentSynchronizeDrawablePredicate(void *p0, XID x1, void *p2)
* synchronizations.
*/
- if (nxagentSynchronization.abort == 1 ||
+ if (nxagentSynchronization.abort ||
nxagentDrawableStatus(pDrawable) == Synchronized)
{
return;
@@ -1138,7 +1138,7 @@ FIXME: This condition sounds only as a complication, as the break
nxagentCongestion, nxagentBlocking);
#endif
- nxagentSynchronization.abort = 1;
+ nxagentSynchronization.abort = True;
return;
}
@@ -1179,7 +1179,7 @@ FIXME: This condition sounds only as a complication, as the break
* clear it.
*/
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
shouldClearHiddenRegion)
{
#ifdef TEST
@@ -1243,7 +1243,7 @@ FIXME: All drawables should be set as synchronized and never marked as
int doRoundRobin = (nxagentSynchronization.pDrawable != NULL);
- nxagentSynchronization.abort = 0;
+ nxagentSynchronization.abort = False;
/*
* Synchronize the windows.
@@ -1260,7 +1260,7 @@ FIXME: All drawables should be set as synchronized and never marked as
#ifdef TEST
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
nxagentSynchronization.windowBitmaps == 0 &&
doRoundRobin == 0)
{
@@ -1280,7 +1280,7 @@ FIXME: All drawables should be set as synchronized and never marked as
* Synchronize the backgrounds.
*/
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
NXAGENT_SHOULD_SYNCHRONIZE_CORRUPTED_BACKGROUNDS(mask))
{
#ifdef TEST
@@ -1292,7 +1292,7 @@ FIXME: All drawables should be set as synchronized and never marked as
#ifdef TEST
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
nxagentSynchronization.backgroundBitmaps == 0 &&
doRoundRobin == 0)
{
@@ -1315,7 +1315,7 @@ FIXME: All drawables should be set as synchronized and never marked as
* the pixmap in a copy or in a composite operation.
*/
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
NXAGENT_SHOULD_SYNCHRONIZE_CORRUPTED_PIXMAPS(mask))
{
#ifdef TEST
@@ -1326,7 +1326,7 @@ FIXME: All drawables should be set as synchronized and never marked as
nxagentSynchronizeDrawablePredicate, &breakMask);
- if (nxagentSynchronization.abort == 0 &&
+ if (!nxagentSynchronization.abort &&
nxagentSynchronization.pixmapBitmaps == 0 &&
doRoundRobin == 0)
{
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Drawable.h b/nx-X11/programs/Xserver/hw/nxagent/Drawable.h
index 1101f989f..22ffabf7a 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Drawable.h
+++ b/nx-X11/programs/Xserver/hw/nxagent/Drawable.h
@@ -38,7 +38,7 @@ typedef struct
{
DrawablePtr pDrawable;
int drawableType;
- int abort;
+ Bool abort;
int windowBitmaps;
int pixmapBitmaps;
int backgroundBitmaps;