From a326eedc75d63188158424e779118bac2b451d4f Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Mon, 12 Mar 2018 11:33:40 -0700 Subject: [PATCH] brodacom/vc4: Fix simulator since the perfmon change. It would be nice to support perfmon with simulator, and might be a useful tool for regression testing performance (since the simulator would be deterministic). --- src/gallium/drivers/vc4/vc4_simulator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/vc4/vc4_simulator.c b/src/gallium/drivers/vc4/vc4_simulator.c index 3afb16e..37c098a 100644 --- a/src/gallium/drivers/vc4/vc4_simulator.c +++ b/src/gallium/drivers/vc4/vc4_simulator.c @@ -620,6 +620,7 @@ vc4_simulator_get_param_ioctl(int fd, struct drm_vc4_get_param *args) return 0; case DRM_VC4_PARAM_SUPPORTS_MADVISE: + case DRM_VC4_PARAM_SUPPORTS_PERFMON: errno = -EINVAL; return -1; -- 2.7.4