diff options
| author | YONGH\yongh <yonghe@outlook.com> | 2017-10-20 19:12:47 -0400 |
|---|---|---|
| committer | YONGH\yongh <yonghe@outlook.com> | 2017-10-20 19:12:47 -0400 |
| commit | 0c8efd12667e66b3177c5d8557a0677c7d5d0e4e (patch) | |
| tree | 1f0f3a92ddbf703868a48d642a1a1f3ee0d0b378 /tools/render-test/render-d3d11.cpp | |
| parent | 0ee4d4b54732239b946bae7fde32bb21aa5a3ec3 (diff) | |
work in progress
Diffstat (limited to 'tools/render-test/render-d3d11.cpp')
| -rw-r--r-- | tools/render-test/render-d3d11.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/render-test/render-d3d11.cpp b/tools/render-test/render-d3d11.cpp index 8915952e0..98b18e447 100644 --- a/tools/render-test/render-d3d11.cpp +++ b/tools/render-test/render-d3d11.cpp @@ -36,6 +36,7 @@ #endif #endif // +using namespace Slang; namespace renderer_test { @@ -752,6 +753,16 @@ public: dxContext->Dispatch(x, y, z); } + struct D3DBinding + { + ID3D11ShaderResourceView * resourceView; + + }; + struct D3DBindingState + { + List<D3DBinding> bindings; + }; + virtual BindingState * createBindingState(const ShaderInputLayout & layout) { return nullptr; |
