summaryrefslogtreecommitdiffstats
path: root/video/out/gpu/context.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gpu/context.c')
-rw-r--r--video/out/gpu/context.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/video/out/gpu/context.c b/video/out/gpu/context.c
index e0beb845c2..052e3cdc80 100644
--- a/video/out/gpu/context.c
+++ b/video/out/gpu/context.c
@@ -55,6 +55,9 @@ extern const struct ra_ctx_fns ra_ctx_vulkan_display;
/* Direct3D 11 */
extern const struct ra_ctx_fns ra_ctx_d3d11;
+/* No API */
+extern const struct ra_ctx_fns ra_ctx_wldmabuf;
+
static const struct ra_ctx_fns *contexts[] = {
#if HAVE_D3D11
&ra_ctx_d3d11,
@@ -108,7 +111,11 @@ static const struct ra_ctx_fns *contexts[] = {
&ra_ctx_vulkan_xlib,
#endif
&ra_ctx_vulkan_display,
+#endif
+/* No API contexts: */
+#if HAVE_WAYLAND
+ &ra_ctx_wldmabuf,
#endif
};