diff options
author | Thomas Balling Sørensen <[email protected]> | 2010-07-22 01:46:40 +0200 |
---|---|---|
committer | Thomas Balling Sørensen <[email protected]> | 2010-07-22 01:46:40 +0200 |
commit | 6ada38d29a9b6eb01ad21e9b1ec089bf42d497da (patch) | |
tree | b63968955ea4bc9110bda0de9286dd179e5d0b7a /src/gallium/state_trackers/vdpau/surface.c | |
parent | 725e4ada3062c80623abf51477dfdc73fe294f3f (diff) |
Added stubs for the rest of the vdpau interface
Diffstat (limited to 'src/gallium/state_trackers/vdpau/surface.c')
-rw-r--r-- | src/gallium/state_trackers/vdpau/surface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/vdpau/surface.c b/src/gallium/state_trackers/vdpau/surface.c index 18fe788f870..89437c89e44 100644 --- a/src/gallium/state_trackers/vdpau/surface.c +++ b/src/gallium/state_trackers/vdpau/surface.c @@ -30,6 +30,7 @@ #include <pipe/p_state.h> #include <util/u_memory.h> #include <util/u_format.h> +#include <stdio.h> VdpStatus vlVdpVideoSurfaceCreate(VdpDevice device, @@ -38,6 +39,8 @@ vlVdpVideoSurfaceCreate(VdpDevice device, uint32_t height, VdpVideoSurface *surface) { + printf("[VDPAU] Creating a surface\n"); + vlVdpSurface *p_surf; VdpStatus ret; |