st/mesa: provide static inline st_init_vdpau_functions

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>
This commit is contained in:
Emil Velikov
2018-01-19 16:53:47 +00:00
committed by Emil Velikov
parent 33e6e5e6a4
commit ef1df63046
2 changed files with 8 additions and 6 deletions
+3 -6
View File
@@ -31,6 +31,8 @@
*
*/
#ifdef HAVE_ST_VDPAU
#include "main/texobj.h"
#include "main/teximage.h"
#include "main/errors.h"
@@ -48,8 +50,6 @@
#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"
@@ -268,13 +268,10 @@ st_vdpau_unmap_surface(struct gl_context *ctx, GLenum target, GLenum access,
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
+5
View File
@@ -36,7 +36,12 @@
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 */