aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/perf.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/perf.py')
-rw-r--r--infra/bots/recipes/perf.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/infra/bots/recipes/perf.py b/infra/bots/recipes/perf.py
index f5096a67f5..2befd138b1 100644
--- a/infra/bots/recipes/perf.py
+++ b/infra/bots/recipes/perf.py
@@ -106,6 +106,17 @@ def nanobench_flags(api, bot):
if 'Intel' in bot and api.vars.is_linux:
configs.extend(['gles', 'glessrgb'])
+ # The following devices do not support glessrgb.
+ if 'glessrgb' in configs:
+ if ('IntelHD405' in bot or
+ 'IntelIris640' in bot or
+ 'IntelBayTrail' in bot or
+ 'IntelHD2000' in bot or
+ 'AndroidOne' in bot or
+ 'Nexus7' in bot or
+ 'NexusPlayer' in bot):
+ configs.remove('glessrgb')
+
if 'CommandBuffer' in bot:
configs = ['commandbuffer']
if 'Vulkan' in bot: