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/targets | |
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/targets')
-rw-r--r-- | src/gallium/targets/dri/target.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gallium/targets/dri/target.c b/src/gallium/targets/dri/target.c index df93c94ea83..d24a61d1563 100644 --- a/src/gallium/targets/dri/target.c +++ b/src/gallium/targets/dri/target.c @@ -73,16 +73,6 @@ DEFINE_LOADER_DRM_ENTRYPOINT(virtio_gpu) #if defined(GALLIUM_VC4) DEFINE_LOADER_DRM_ENTRYPOINT(vc4) - -#if defined(USE_VC4_SIMULATOR) -/** - * When building using the simulator (on x86), we advertise ourselves as the - * i965 driver so that you can just make a directory with a link from - * i965_dri.so to the built vc4_dri.so, and point LIBGL_DRIVERS_PATH to that - * on your i965-using host to run the driver under simulation. - */ -DEFINE_LOADER_DRM_ENTRYPOINT(i965) -#endif #endif #if defined(GALLIUM_ETNAVIV) |