]> git.cworth.org Git - apitrace/blobdiff - retrace/glws_glx.cpp
stash: Trace and replay of gnome-shell works
[apitrace] / retrace / glws_glx.cpp
index ce742ac260001e815d7ed2f55ad9413c729f443f..b75945c8e8a8d3becbbf1239366356a9f3718dfb 100644 (file)
@@ -422,8 +422,6 @@ createPixmap(unsigned width, unsigned height, unsigned depth)
     pixmap = XCreatePixmap(display, DefaultRootWindow(display),
                            width, height, depth);
 
-    printf ("Replayed XCreatePixmap to create pixmap %ld\n", pixmap);
-
     return new GlxDrawable(pixmap, width, height);
 }
 
@@ -436,8 +434,6 @@ createGLPixmap(GLXFBConfig fbconfig, Drawable *_pixmap,
 
     gl_pixmap = glXCreatePixmap(display, fbconfig, pixmap->window, attrib_list);
 
-    printf ("And replayed glXCreatePixmap to create pixmap %ld\n", gl_pixmap);
-
     return new GlxDrawable(gl_pixmap, width, height);
 }
 
@@ -484,8 +480,6 @@ putImageData(glws::Drawable *drawable, char *data,
     GC gc;
     XImage image;
 
-    printf ("Calling XPutImage to pixmap %ld\n", glxDrawable->window);
-
     image.width = width;
     image.height = height;
     image.format = ZPixmap;