summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/vdpau-nouveau/target.c
diff options
context:
space:
mode:
authorMaarten Lankhorst <[email protected]>2011-10-18 14:24:30 +0200
committerChristoph Bumiller <[email protected]>2011-10-21 23:39:01 +0200
commitdf8f864bf6fb8dfd256455a5310ef70f820a5350 (patch)
tree4998b64d217f63afc3585a5feed64af87f96782e /src/gallium/targets/vdpau-nouveau/target.c
parent27b0c9d51300712f3b5d4af6cc20d53fcf9c8c46 (diff)
gallium/targets: Add vdpau target for nouveau
Should fall back to shader based decoding (g3dvl) for now. This is probably broken on systems that support xvmc, because nouveau_video_buffer_create has no way to know for what api the buffer is created, so I think this call might need a separate argument as workaround. Signed-off-by: Maarten Lankhorst <[email protected]>
Diffstat (limited to 'src/gallium/targets/vdpau-nouveau/target.c')
-rw-r--r--src/gallium/targets/vdpau-nouveau/target.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gallium/targets/vdpau-nouveau/target.c b/src/gallium/targets/vdpau-nouveau/target.c
new file mode 100644
index 00000000000..d580b104421
--- /dev/null
+++ b/src/gallium/targets/vdpau-nouveau/target.c
@@ -0,0 +1,18 @@
+#include "state_tracker/drm_driver.h"
+#include "target-helpers/inline_debug_helper.h"
+#include "nouveau/drm/nouveau_drm_public.h"
+
+static struct pipe_screen *create_screen(int fd)
+{
+ struct pipe_screen *screen;
+
+ screen = nouveau_drm_screen_create(fd);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}
+
+DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen, NULL)