diff options
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_screen.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_screen.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_screen.c b/src/gallium/drivers/vc4/vc4_screen.c index f60500ddec3..29c0f94bf90 100644 --- a/src/gallium/drivers/vc4/vc4_screen.c +++ b/src/gallium/drivers/vc4/vc4_screen.c @@ -499,7 +499,11 @@ vc4_screen_is_format_supported(struct pipe_screen *pscreen, static bool vc4_supports_branches(struct vc4_screen *screen) { +#if USE_VC4_SIMULATOR + return true; +#else return false; +#endif } struct pipe_screen * |