diff options
author | Eric Anholt <[email protected]> | 2017-10-12 18:40:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-10-17 13:41:59 -0700 |
commit | 4f3e380fa0f192f90e6661ecf5ca1d7e755eed8f (patch) | |
tree | 3d45032f82a2e25077ec6298e824d16977cb5373 /src/gallium/meson.build | |
parent | 1918c9b1627d5403e2efbffa03441c4b7d61a63e (diff) |
meson: Add support for the vc5 driver.
v2: Default vc5 to off, since it requires the simulator currently. Add
missing dep on the XML generation from libbroadcom_vc5.
Reviewed-by: Dylan Baker <[email protected]> (v1)
Diffstat (limited to 'src/gallium/meson.build')
-rw-r--r-- | src/gallium/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/meson.build b/src/gallium/meson.build index b563a5ff51c..a65b32c658e 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -35,6 +35,9 @@ subdir('drivers/softpipe') if with_gallium_vc4 subdir('drivers/vc4') endif +if with_gallium_vc5 + subdir('drivers/vc5') +endif subdir('drivers/llvmpipe') subdir('winsys/sw/null') subdir('winsys/sw/dri') @@ -49,6 +52,9 @@ subdir('winsys/nouveau/drm') if with_gallium_vc4 subdir('winsys/vc4/drm') endif +if with_gallium_vc5 + subdir('winsys/vc5/drm') +endif subdir('state_trackers/dri') # TODO: freedreno # TODO: i915 |