summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorAntonio Caggiano <antonio.caggiano@collabora.com>2021-03-18 18:30:45 +0100
committerMarge Bot <eric+marge@anholt.net>2021-05-07 13:41:38 +0000
commit1cc72b2aef82373247466c2e7b81970c867ad0fa (patch)
tree907e888a0f06e61ccf64fbd61c9d7ab8131c179d /meson_options.txt
parenta0738525ed8ab6de1eabc210290c6c2a5921863c (diff)
pps: Gfx-pps v0.3.0
Add the gfx-pps backbone in `src/pps`. v2: Simplify supported drivers creation. v3: No default getter is provided for counters. v4: Open DRM device in read/write mode. v5: Wait for datasource to be started. v6: Set FIFO scheduler while sampling counters. Signed-off-by: Antonio Caggiano <antonio.caggiano@collabora.com> Acked-by: Emma Anholt <emma@anholt.net> Reviewed-by: Rob Clark <robdclark@chromium.org> Reviewed-by: John Bates <jbates@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9652>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 772ea057903..8ab9309806a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -470,4 +470,11 @@ option(
type : 'boolean',
value : false,
description : 'Enable performance analysis with Perfetto. Default: false'
-) \ No newline at end of file
+)
+option(
+ 'datasources',
+ type : 'array',
+ value : ['auto'],
+ choices : ['auto', 'panfrost', 'intel'],
+ description: 'List of Perfetto datasources to build. If this is set to `auto`, datasources that can not be build are skipped. Default: [`auto`]'
+)