diff options
author | Dylan Baker <[email protected]> | 2017-10-30 15:49:37 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-12-04 14:36:53 -0800 |
commit | 5a785d51a6d68ec676cea6220f75bad95a3221dc (patch) | |
tree | 2ddfdc42de0bdaa4612e56482aed7c77586cbfec /src/gallium/meson.build | |
parent | 1d36dc674d528b93bec3ff9637adde4ae6492452 (diff) |
meson: build gallium va state tracker
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/meson.build')
-rw-r--r-- | src/gallium/meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/meson.build b/src/gallium/meson.build index 990663f6de3..41c29127923 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -128,6 +128,9 @@ endif if with_gallium_omx subdir('state_trackers/omx_bellagio') endif +if with_gallium_va + subdir('state_trackers/va') +endif # TODO: SWR # TODO: clover if with_dri @@ -152,7 +155,9 @@ endif if with_gallium_omx subdir('targets/omx-bellagio') endif -# TODO: VA +if with_gallium_va + subdir('targets/va') +endif # TODO: xa # TODO: nine # TODO: tests |