The ifdef spaghetty in st_vdpau.c is rather confusing and misleading.
Simplily it by introducing a static inline helper noop (when
HAVE_ST_VDPAU is not defined) in the header.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Christian König <christian.koenig@amd.com>
*
*/
+#ifdef HAVE_ST_VDPAU
+
#include "main/texobj.h"
#include "main/teximage.h"
#include "main/errors.h"
#include "st_format.h"
#include "st_cb_flush.h"
-#ifdef HAVE_ST_VDPAU
-
#include "state_tracker/vdpau_interop.h"
#include "state_tracker/vdpau_dmabuf.h"
#include "state_tracker/vdpau_funcs.h"
st_flush(st, NULL, 0);
}
-#endif
-
void
st_init_vdpau_functions(struct dd_function_table *functions)
{
-#ifdef HAVE_ST_VDPAU
functions->VDPAUMapSurface = st_vdpau_map_surface;
functions->VDPAUUnmapSurface = st_vdpau_unmap_surface;
-#endif
}
+#endif
struct dd_function_table;
+#ifdef HAVE_ST_VDPAU
extern void
st_init_vdpau_functions(struct dd_function_table *functions);
+#else
+static inline void
+st_init_vdpau_functions(struct dd_function_table *functions) {}
+#endif
#endif /* ST_VDPAU_H */