diff options
author | Dylan Baker <[email protected]> | 2017-09-28 22:25:02 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-16 16:32:43 -0700 |
commit | b1b65397d0c4978e36a84c0a1c98a4bd6cb9588e (patch) | |
tree | 165535796a6ba46dcc4b64299ca8bd805838b827 /meson_options.txt | |
parent | af9d276134d9af3b6145f10943eaf7bf1a6226b6 (diff) |
meson: Build gallium auxiliary
v2: - guard gallivm files with "with_llvm" instead of "dep_llvm.found()"
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]> (v1)
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index c9e95263cd2..75c53fc49d6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -option('platforms', type : 'string', value : 'x11,wayland', +option('platforms', type : 'string', value : 'x11,wayland,drm', description : 'comma separated list of window systems to support. wayland, x11, surfaceless, drm, etc.') option('dri3', type : 'combo', value : 'auto', choices : ['auto', 'yes', 'no'], description : 'enable support for dri3') @@ -28,6 +28,8 @@ option('dri-drivers-path', type : 'string', value : '', description : 'Location of dri drivers. Default: $libdir/dri.') option('gallium-drivers', type : 'string', value : 'radeonsi', description : 'comma separated list of gallium drivers to build.') +option('gallium-media', type : 'string', value : '', + description : 'comma separated list of gallium media APIs to build (omx,va,vdpau,xvmc).') option('vulkan-drivers', type : 'string', value : 'intel,amd', description : 'comma separated list of vulkan drivers to build.') option('shader-cache', type : 'boolean', value : true, |