Add a new client that draws a pointer.
diff --git a/egl-compositor.c b/egl-compositor.c
index 6f501e1..3489215 100644
--- a/egl-compositor.c
+++ b/egl-compositor.c
@@ -40,7 +40,7 @@
 	struct wl_surface *surface;
 	struct surface_data *sd;
 	GLint vertices[12];
-	GLint tex_coords[8] = { 1, 0,  1, 1,  0, 0,  0, 1 };
+	GLint tex_coords[12] = { 0, 0,  0, 1,  1, 0,  1, 1 };
 	GLuint indices[4] = { 0, 1, 2, 3 };
 	       
 	/* This part is where we actually copy the buffer to screen.