aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/vdpau/output.c
diff options
context:
space:
mode:
authorChristian König <[email protected]>2011-05-04 19:58:33 +0200
committerChristian König <[email protected]>2011-05-04 19:58:33 +0200
commit08f3a7cf7e9133f50adf33f800aa3696c909347f (patch)
tree67d66095f7b1ceba324a12cc569ed2dbdbeef925 /src/gallium/state_trackers/vdpau/output.c
parent7709e6ebc3d9f159063e40ca217d61f20ce507f0 (diff)
vdpau: make state tracker far less noisy
Diffstat (limited to 'src/gallium/state_trackers/vdpau/output.c')
-rw-r--r--src/gallium/state_trackers/vdpau/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vdpau/output.c b/src/gallium/state_trackers/vdpau/output.c
index 35b75ab3aa7..0257d38017a 100644
--- a/src/gallium/state_trackers/vdpau/output.c
+++ b/src/gallium/state_trackers/vdpau/output.c
@@ -46,7 +46,7 @@ vlVdpOutputSurfaceCreate(VdpDevice device,
vlVdpOutputSurface *vlsurface = NULL;
- debug_printf("[VDPAU] Creating output surface\n");
+ VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Creating output surface\n");
if (!(width && height))
return VDP_STATUS_INVALID_SIZE;
@@ -110,7 +110,7 @@ vlVdpOutputSurfaceDestroy(VdpOutputSurface surface)
{
vlVdpOutputSurface *vlsurface;
- debug_printf("[VDPAU] Destroying output surface\n");
+ VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Destroying output surface\n");
vlsurface = vlGetDataHTAB(surface);
if (!vlsurface)