summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/target-helpers
diff options
context:
space:
mode:
authorEdward O'Callaghan <[email protected]>2017-02-02 01:17:07 +1100
committerEdward O'Callaghan <[email protected]>2017-02-03 16:13:32 +1100
commit01b625ef1a5ccba9627442eb2e2d8d0dcd0b4455 (patch)
tree4836f5d30a0d37fc0a6c3abfd4d6dcd13dc03030 /src/gallium/auxiliary/target-helpers
parent2b4eaabff01a3a8ea0c4742ac481492092c1ab4f (diff)
ilo: EOL unplumb unmaintained gallium drv from winsys
This is no longer actively maintained and is just accumulating bitrot. Signed-off-by: Edward O'Callaghan <[email protected]> Acked-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/target-helpers')
-rw-r--r--src/gallium/auxiliary/target-helpers/drm_helper.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/gallium/auxiliary/target-helpers/drm_helper.h b/src/gallium/auxiliary/target-helpers/drm_helper.h
index f847b17dd68..3159df6c5d0 100644
--- a/src/gallium/auxiliary/target-helpers/drm_helper.h
+++ b/src/gallium/auxiliary/target-helpers/drm_helper.h
@@ -34,35 +34,6 @@ pipe_i915_create_screen(int fd)
#endif
-#ifdef GALLIUM_ILO
-#include "intel/drm/intel_drm_public.h"
-#include "ilo/ilo_public.h"
-
-struct pipe_screen *
-pipe_ilo_create_screen(int fd)
-{
- struct intel_winsys *iws;
- struct pipe_screen *screen;
-
- iws = intel_winsys_create_for_fd(fd);
- if (!iws)
- return NULL;
-
- screen = ilo_screen_create(iws);
- return screen ? debug_screen_wrap(screen) : NULL;
-}
-
-#else
-
-struct pipe_screen *
-pipe_ilo_create_screen(int fd)
-{
- fprintf(stderr, "ilo: driver missing\n");
- return NULL;
-}
-
-#endif
-
#ifdef GALLIUM_NOUVEAU
#include "nouveau/drm/nouveau_drm_public.h"