From: Emil Velikov Date: Fri, 7 Feb 2014 16:37:50 +0000 (+0000) Subject: st/vdpau: do not export VdpPresentationQueueTargetCreateX11 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=255b39f17ac3e84ae1db55bda37881f76d1ac8b3;p=mesa.git st/vdpau: do not export VdpPresentationQueueTargetCreateX11 The function pointer is retrieved via VdpGetProcAddress just like all the other vdpau functions and should not be exported. Signed-off-by: Emil Velikov Reviewed-by: Matt Turner Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/vdpau/device.c b/src/gallium/state_trackers/vdpau/device.c index def1e2a0662..0cdda73f1c0 100644 --- a/src/gallium/state_trackers/vdpau/device.c +++ b/src/gallium/state_trackers/vdpau/device.c @@ -106,7 +106,7 @@ no_htab: /** * Create a VdpPresentationQueueTarget for use with X11. */ -PUBLIC VdpStatus +VdpStatus vlVdpPresentationQueueTargetCreateX11(VdpDevice device, Drawable drawable, VdpPresentationQueueTarget *target) { diff --git a/src/gallium/state_trackers/vdpau/vdpau_private.h b/src/gallium/state_trackers/vdpau/vdpau_private.h index 08afe60341f..2f4d651a906 100644 --- a/src/gallium/state_trackers/vdpau/vdpau_private.h +++ b/src/gallium/state_trackers/vdpau/vdpau_private.h @@ -436,7 +436,6 @@ boolean vlGetFuncFTAB(VdpFuncId function_id, void **func); /* Public functions */ VdpDeviceCreateX11 vdp_imp_device_create_x11; -VdpPresentationQueueTargetCreateX11 vlVdpPresentationQueueTargetCreateX11; void vlVdpDefaultSamplerViewTemplate(struct pipe_sampler_view *templ, struct pipe_resource *res); @@ -507,6 +506,9 @@ VdpVideoMixerGetParameterValues vlVdpVideoMixerGetParameterValues; VdpVideoMixerGetAttributeValues vlVdpVideoMixerGetAttributeValues; VdpVideoMixerDestroy vlVdpVideoMixerDestroy; VdpGenerateCSCMatrix vlVdpGenerateCSCMatrix; +/* Winsys specific internal function pointers */ +VdpPresentationQueueTargetCreateX11 vlVdpPresentationQueueTargetCreateX11; + /* interop to mesa state tracker */ VdpVideoSurfaceGallium vlVdpVideoSurfaceGallium;