summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2018-01-19 16:53:47 +0000
committerEmil Velikov <[email protected]>2018-01-22 16:31:15 +0000
commitef1df63046d2e129817cd39ca9a91fa7a1e9cf38 (patch)
treecd2b4abaa54844df8bc1d9917fd0549b4b38e260 /src
parent33e6e5e6a45a63728053d92c366fe8b320199843 (diff)
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 <[email protected]> Acked-by: Christian König <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/state_tracker/st_vdpau.c9
-rw-r--r--src/mesa/state_tracker/st_vdpau.h5
2 files changed, 8 insertions, 6 deletions
diff --git a/src/mesa/state_tracker/st_vdpau.c b/src/mesa/state_tracker/st_vdpau.c
index e0126cc03d8..eb61aef1116 100644
--- a/src/mesa/state_tracker/st_vdpau.c
+++ b/src/mesa/state_tracker/st_vdpau.c
@@ -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
diff --git a/src/mesa/state_tracker/st_vdpau.h b/src/mesa/state_tracker/st_vdpau.h
index 59c744305cf..6f4d46091f2 100644
--- a/src/mesa/state_tracker/st_vdpau.h
+++ b/src/mesa/state_tracker/st_vdpau.h
@@ -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 */