summaryrefslogtreecommitdiffstats
path: root/tools/render-test/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/render-test/options.cpp')
-rw-r--r--tools/render-test/options.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/render-test/options.cpp b/tools/render-test/options.cpp
index 2f304b7c0..0266a0c75 100644
--- a/tools/render-test/options.cpp
+++ b/tools/render-test/options.cpp
@@ -137,6 +137,14 @@ static gfx::DeviceType _toRenderType(Slang::RenderApiType apiType)
{
outOptions.shaderType = ShaderProgramType::RayTracing;
}
+ else if (argValue == "-mesh")
+ {
+ outOptions.shaderType = ShaderProgramType::GraphicsMeshCompute;
+ }
+ else if (argValue == "-task")
+ {
+ outOptions.shaderType = ShaderProgramType::GraphicsTaskMeshCompute;
+ }
else if(argValue == "-use-dxil")
{
outOptions.useDXIL = true;