summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/xorg-nouveau/nouveau_target.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/xorg-nouveau/nouveau_target.c')
-rw-r--r--src/gallium/targets/xorg-nouveau/nouveau_target.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/gallium/targets/xorg-nouveau/nouveau_target.c b/src/gallium/targets/xorg-nouveau/nouveau_target.c
deleted file mode 100644
index c0d7f92e33f..00000000000
--- a/src/gallium/targets/xorg-nouveau/nouveau_target.c
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#include "target-helpers/inline_debug_helper.h"
-#include "state_tracker/drm_driver.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)