diff options
author | Dylan Baker <[email protected]> | 2017-10-30 14:32:30 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-12-04 14:36:48 -0800 |
commit | 22a817af8a89eb3c762fc3e07b443a3ce37d7416 (patch) | |
tree | 4295cd8d4e4abe6731ec27fc17f18ee572b8d32f /src/gallium/meson.build | |
parent | 68076b87474e7959c161f3dad3672c9322a2c96f (diff) |
meson: build gallium xvmc 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 904bf859876..584e6729966 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -122,6 +122,9 @@ endif if with_gallium_vdpau subdir('state_trackers/vdpau') endif +if with_gallium_xvmc + subdir('state_trackers/xvmc') +endif # TODO: SWR # TODO: clover if with_dri @@ -140,9 +143,11 @@ endif if with_gallium_vdpau subdir('targets/vdpau') endif +if with_gallium_xvmc + subdir('targets/xvmc') +endif # TODO: OMX # TODO: VA # TODO: xa -# TODO: xvmc # TODO: nine # TODO: tests |