summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-11-29 17:50:05 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-01-08 16:39:30 -0800
commite0b037d6979b266d4959c1e31746d4d19c941fdb (patch)
tree98dc4287b207d8e9083d239a77155afdc292d9ce /meson_options.txt
parentf04d2ca0d979101dd8bfcdc6cad30461ff73a7cc (diff)
meson: Build SWR driver
This enables the SWR driver, but doesn't actually hook it up to any of the targets yet. I felt like this patch was big and complicated enough without adding that. v2: - Fix typo 'delemeited' -> 'delimited' (Eric E) - Fix type 'errror' -> 'error' (Eric E) - Use variables to hold files instead of looking above the current meson build (Eric E) - Use foreach loops to reduce the number of unique generators - Add comment about why some generators have names and some are just added to a list v3: - Remove trailing whitespace Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 39b137cbeaf..4f4db5b7d26 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -261,3 +261,9 @@ option(
choices : ['8', '16', '32'],
description : 'Number of channel bits for OSMesa.'
)
+option(
+ 'swr-arches',
+ type : 'string',
+ value : 'avx,avx2',
+ description : 'Comma delemited swr architectures. choices : avx,avx2,knl,skx'
+)