From: Brian Paul Date: Mon, 20 Jan 2014 15:51:25 +0000 (-0800) Subject: st/vdpau: s/surface/resource/ to fix compiler warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33ae0c24d045e7b5e210785cb9f6a36483fec941;p=mesa.git st/vdpau: s/surface/resource/ to fix compiler warning Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/vdpau/output.c b/src/gallium/state_trackers/vdpau/output.c index 59874cb0965..aa7e997b591 100644 --- a/src/gallium/state_trackers/vdpau/output.c +++ b/src/gallium/state_trackers/vdpau/output.c @@ -117,7 +117,7 @@ vlVdpOutputSurfaceCreate(VdpDevice device, err_resource: pipe_sampler_view_reference(&vlsurface->sampler_view, NULL); pipe_surface_reference(&vlsurface->surface, NULL); - pipe_surface_reference(&res, NULL); + pipe_resource_reference(&res, NULL); err_unlock: pipe_mutex_unlock(dev->mutex); FREE(vlsurface);