aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiers Daniell <pdaniell@nvidia.com>2022-05-12 10:17:52 -0600
committerPiers Daniell US <pdaniell@nvidia.com>2022-05-12 10:38:22 -0600
commiteedd8a2f7ae2e06e4cad7a4921c0bc56521703e6 (patch)
treefae8944948c41be126b4f27d6fd030f7605e129d
parent6cae7ec7dac6471c7c9624cf52e31d3acc455e94 (diff)
downloadcherry-master.tar.gz
Add support for mesh shadersHEADmastermain
Change-Id: I302a08071b5797a91e39207ad7c25e1f66cdf0a0
-rw-r--r--client/js/filters.js2
-rw-r--r--client/js/testCaseResult.js2
2 files changed, 4 insertions, 0 deletions
diff --git a/client/js/filters.js b/client/js/filters.js
index 7716c0c..106ba9a 100644
--- a/client/js/filters.js
+++ b/client/js/filters.js
@@ -125,6 +125,8 @@ angular.module('cherry.filters', [])
case 'miss': return 'Miss';
case 'intersection': return 'Intersection';
case 'callable': return 'Callable';
+ case 'mesh': return 'Mesh';
+ case 'task': return 'Task';
}
}
})
diff --git a/client/js/testCaseResult.js b/client/js/testCaseResult.js
index 2df7da6..0ed520e 100644
--- a/client/js/testCaseResult.js
+++ b/client/js/testCaseResult.js
@@ -74,6 +74,8 @@ angular.module('cherry.testCaseResult', [])
MissShader: { tag: 'de-shader', attributes: {'type': 'miss'} },
IntersectionShader: { tag: 'de-shader', attributes: {'type': 'intersection'} },
CallableShader: { tag: 'de-shader', attributes: {'type': 'callable'} },
+ MeshShader: { tag: 'de-shader', attributes: {'type': 'mesh'} },
+ TaskShader: { tag: 'de-shader', attributes: {'type': 'task'} },
ShaderSource: { tag: 'de-shader-source' },
SpirVAssemblySource: { tag: 'de-spirv-source' },
Section: { tag: 'de-section' },