vc4: Allow DRI3 on simulation, as well.

The problem I'd seen before seems to be gone.
This commit is contained in:
Eric Anholt
2015-03-23 16:15:11 -07:00
parent 7f797e3d17
commit 4df13f55b6
@@ -472,6 +472,11 @@ dd_configuration(enum drm_conf conf)
if (strcmp(driver_name, "vc4") == 0)
return configuration_query(conf);
else
#if defined(USE_VC4_SIMULATOR)
if (strcmp(driver_name, "i965") == 0)
return configuration_query(conf);
else
#endif
#endif
return NULL;
}