diff options
author | Dylan Baker <[email protected]> | 2017-10-30 17:40:30 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-12-04 14:36:56 -0800 |
commit | 0ba909f0f111824223bc38563d1a6bc73e69c2cc (patch) | |
tree | e955bbc44285b4acc960fe5e30201a04574ebd51 /src/gallium/meson.build | |
parent | 5a785d51a6d68ec676cea6220f75bad95a3221dc (diff) |
meson: build gallium xa 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 41c29127923..e700d03da93 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -131,6 +131,9 @@ endif if with_gallium_va subdir('state_trackers/va') endif +if with_gallium_xa + subdir('state_trackers/xa') +endif # TODO: SWR # TODO: clover if with_dri @@ -158,6 +161,8 @@ endif if with_gallium_va subdir('targets/va') endif -# TODO: xa +if with_gallium_xa + subdir('targets/xa') +endif # TODO: nine # TODO: tests |