diff options
Diffstat (limited to 'tools/render-test/shader-input-layout.cpp')
| -rw-r--r-- | tools/render-test/shader-input-layout.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/render-test/shader-input-layout.cpp b/tools/render-test/shader-input-layout.cpp index 4c68899ef..5e487f1ad 100644 --- a/tools/render-test/shader-input-layout.cpp +++ b/tools/render-test/shader-input-layout.cpp @@ -140,6 +140,11 @@ namespace renderer_test entry.type = ShaderInputType::Buffer; entry.bufferDesc.type = InputBufferType::ConstantBuffer; } + else if (parser.LookAhead("root_constants")) + { + entry.type = ShaderInputType::Buffer; + entry.bufferDesc.type = InputBufferType::RootConstantBuffer; + } else if (parser.LookAhead("ubuffer")) { entry.type = ShaderInputType::Buffer; |
