diff options
author | Jesse Barnes <[email protected]> | 2010-03-05 10:31:39 -0800 |
---|---|---|
committer | Jesse Barnes <[email protected]> | 2010-03-05 11:22:04 -0800 |
commit | 6b3145d6ee07a0fa9bb867e96ebe6cf716961bb9 (patch) | |
tree | 76cdd59bd05519303fa1e47caa20bf157f8432d8 | |
parent | 77bc721a529e1643ad3c56ed58817e4d74599909 (diff) |
GLX: remove debug prints from glXWaitForMscOML dispatch
Leftover from earlier commit.
-rw-r--r-- | src/glx/glxcmds.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 4fbc6b6ab21..49cbce72f8a 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -2534,8 +2534,6 @@ __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, __GLXscreenConfigs * const psc = GetGLXScreenConfigs( dpy, screen ); int ret; - fprintf(stderr, "waitmsc: %lld, %lld, %lld\n", target_msc, divisor, - remainder); /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE * error", but the return type in the spec is Bool. @@ -2547,7 +2545,6 @@ __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, #ifdef __DRI_MEDIA_STREAM_COUNTER if (pdraw != NULL && psc->msc != NULL) { - fprintf(stderr, "dri1 msc\n"); ret = (*psc->msc->waitForMSC) (pdraw->driDrawable, target_msc, divisor, remainder, msc, sbc); @@ -2563,7 +2560,6 @@ __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, return ret; } - fprintf(stderr, "no drawable??\n"); return False; } |