diff options
author | Eric Anholt <[email protected]> | 2017-02-03 11:04:46 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-02-06 12:44:06 -0800 |
commit | 72e6d1f00a13f15d2c51382bbfb9ac5f28d045e6 (patch) | |
tree | 550e05e6f9f3375572655df8c7a10449633a3c2f /src/gallium/auxiliary/pipe-loader | |
parent | 3f462050c29dc29139732987c9c9ef9a670133ab (diff) |
gallium: Remove vc4 simulator hack from loader infrastructure.
Now that there's MESA_LOADER_DRIVER_OVERRIDE for choosing the driver name
we load, we don't need this any more.
v2: Get the junk out of pipe_loader_drm.c, too.
Reviewed-by: Emil Velikov <[email protected]> (v1)
Reviewed-by: Nicolai Hähnle <[email protected]> (v2)
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index 09549e5bda3..aba814b9283 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -93,17 +93,6 @@ static const struct drm_driver_descriptor driver_descriptors[] = { .create_screen = pipe_i915_create_screen, .configuration = configuration_query, }, -#ifdef USE_VC4_SIMULATOR - /* VC4 simulator and ILO (i965) are mutually exclusive (error at - * configure). As the latter is unconditionally added, keep this one above - * it. - */ - { - .driver_name = "i965", - .create_screen = pipe_vc4_create_screen, - .configuration = configuration_query, - }, -#endif { .driver_name = "nouveau", .create_screen = pipe_nouveau_create_screen, |