diff options
| author | Yong He <yonghe@outlook.com> | 2022-10-05 19:35:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-05 19:35:47 -0700 |
| commit | cf34d2830a3103b2b47a4140d27d054b797705f2 (patch) | |
| tree | 3620bc07e53edc6c959777d069b1931aa28691e4 /tools/gfx/debug-layer/debug-shader-object.h | |
| parent | 364e43264b9f69957ddaed8890392d82fb25c822 (diff) | |
Various gfx fixes. (#2434)
Diffstat (limited to 'tools/gfx/debug-layer/debug-shader-object.h')
| -rw-r--r-- | tools/gfx/debug-layer/debug-shader-object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-shader-object.h b/tools/gfx/debug-layer/debug-shader-object.h index 8007e653a..9f368a2c1 100644 --- a/tools/gfx/debug-layer/debug-shader-object.h +++ b/tools/gfx/debug-layer/debug-shader-object.h @@ -32,6 +32,7 @@ class DebugShaderObject : public DebugObject<IShaderObject> { public: SLANG_COM_OBJECT_IUNKNOWN_ALL; + void checkCompleteness(); public: IShaderObject* getInterface(const Slang::Guid& guid); @@ -83,6 +84,7 @@ public: Slang::Dictionary<ShaderOffsetKey, Slang::RefPtr<DebugShaderObject>> m_objects; Slang::Dictionary<ShaderOffsetKey, Slang::RefPtr<DebugResourceView>> m_resources; Slang::Dictionary<ShaderOffsetKey, Slang::RefPtr<DebugSamplerState>> m_samplers; + Slang::HashSet<SlangInt> m_initializedBindingRanges; }; class DebugRootShaderObject : public DebugShaderObject |
