diff options
| author | Yong He <yonghe@outlook.com> | 2021-03-18 13:19:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-18 13:19:58 -0700 |
| commit | 0f9b3a95a6cc087bc1e34d4becff04fa6160c582 (patch) | |
| tree | a8b14958f13f53ee3918c727f4e5a06af377349c /tools/gfx/renderer-shared.h | |
| parent | 6e5d85efb9fa5f647f7f0c7ef784a9fd09b29023 (diff) | |
Remove `DescriptorSet` from D3D11 and GL devices. (#1761)
Diffstat (limited to 'tools/gfx/renderer-shared.h')
| -rw-r--r-- | tools/gfx/renderer-shared.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/tools/gfx/renderer-shared.h b/tools/gfx/renderer-shared.h index 2a77dcb93..5ca5f064b 100644 --- a/tools/gfx/renderer-shared.h +++ b/tools/gfx/renderer-shared.h @@ -148,7 +148,7 @@ protected: RendererBase* m_renderer; slang::TypeLayoutReflection* m_elementTypeLayout = nullptr; ShaderComponentID m_componentID = 0; - +public: static slang::TypeLayoutReflection* _unwrapParameterGroups(slang::TypeLayoutReflection* typeLayout) { for (;;) @@ -285,16 +285,6 @@ protected: void initializeBase(const PipelineStateDesc& inDesc); }; -class ShaderBinary : public Slang::RefObject -{ -public: - Slang::List<uint8_t> source; - StageType stage; - Slang::String entryPointName; - Result loadFromBlob(ISlangBlob* blob); - Result writeToBlob(ISlangBlob** outBlob); -}; - struct ComponentKey { Slang::UnownedStringSlice typeName; |
