summaryrefslogtreecommitdiff
path: root/xcb-demo
diff options
context:
space:
mode:
authorBart Massey <bart@cs.pdx.edu>2005-12-18 04:24:01 +0000
committerBart Massey <bart@cs.pdx.edu>2005-12-18 04:24:01 +0000
commit4ed290afd1699ca418e6fcc88331b6d086e8ca9e (patch)
treecd7b3babf1dfdf4dcaa5d3944066d87d4a85ea28 /xcb-demo
parent96409fcf5015511b8bf173008fb452f65965cb65 (diff)
Minor cleanups for readability etc
Diffstat (limited to 'xcb-demo')
-rw-r--r--xcb-demo/tests/lissajoux.c50
1 files changed, 28 insertions, 22 deletions
diff --git a/xcb-demo/tests/lissajoux.c b/xcb-demo/tests/lissajoux.c
index fe74918..1bb6350 100644
--- a/xcb-demo/tests/lissajoux.c
+++ b/xcb-demo/tests/lissajoux.c
@@ -1,3 +1,5 @@
+#include <assert.h>
+
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
@@ -44,14 +46,20 @@ draw_lissajoux (Data data)
double x, y;
if (do_shm)
- XCBImageSHMGet (data.conn, data.draw,
- data.image, shminfo,
- 0, 0,
- AllPlanes);
+ {
+ i = XCBImageSHMGet (data.conn, data.draw,
+ data.image, shminfo,
+ 0, 0,
+ AllPlanes);
+ assert(i);
+ }
else
- data.image = XCBImageGet (data.conn, data.draw,
- 0, 0, W_W, W_H,
- AllPlanes, data.format);
+ {
+ data.image = XCBImageGet (data.conn, data.draw,
+ 0, 0, W_W, W_H,
+ AllPlanes, data.format);
+ assert(data.image);
+ }
pi = 3.1415926535897;
period = 2.0 * pi;
@@ -92,7 +100,7 @@ draw_lissajoux (Data data)
}
void
-loop (Data data)
+step (Data data)
{
loop_count++;
t = get_time () - time_start;
@@ -130,17 +138,20 @@ shm_test (Data data)
format = 0;
data.image = XCBImageSHMCreate (data.conn, data.depth,
format, NULL, W_W, W_H);
+ assert(data.image);
shminfo.shmid = shmget (IPC_PRIVATE,
data.image->bytes_per_line*data.image->height,
IPC_CREAT | 0777);
+ assert(shminfo.shmid != -1);
shminfo.shmaddr = shmat (shminfo.shmid, 0, 0);
+ assert(shminfo.shmaddr);
data.image->data = shminfo.shmaddr;
shminfo.shmseg = XCBShmSEGNew (data.conn);
XCBShmAttach (data.conn, shminfo.shmseg,
shminfo.shmid, 0);
- shmctl(shminfo.shmid, IPC_RMID, 0);
+ assert(shmctl(shminfo.shmid, IPC_RMID, 0) != -1);
}
if (data.image)
@@ -227,8 +238,6 @@ main (int argc, char *argv[])
W_W, W_H);
XCBPolyFillRectangle(data.conn, rect, bgcolor, 1, &rect_coord);
- XCBMapWindow (data.conn, data.draw.window);
-
data.format = ZPixmap;
XCBSync (data.conn, 0);
@@ -243,21 +252,18 @@ main (int argc, char *argv[])
if (e)
{
switch (e->response_type)
- {
+ {
case XCBExpose:
- {
- XCBCopyArea(data.conn, rect, data.draw, bgcolor,
- 0, 0, 0, 0, W_W, W_H);
- XCBSync (data.conn, 0);
- break;
- }
+ XCBCopyArea(data.conn, rect, data.draw, bgcolor,
+ 0, 0, 0, 0, W_W, W_H);
+ XCBSync (data.conn, 0);
+ break;
}
free (e);
- }
- loop (data);
+ }
+ step (data);
XCBFlush (data.conn);
t_previous = t;
}
-
- return 1;
+ /*NOTREACHED*/
}