summaryrefslogtreecommitdiffstats
path: root/tools/gfx/debug-layer/debug-shader-object.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2022-10-05 19:35:47 -0700
committerGitHub <noreply@github.com>2022-10-05 19:35:47 -0700
commitcf34d2830a3103b2b47a4140d27d054b797705f2 (patch)
tree3620bc07e53edc6c959777d069b1931aa28691e4 /tools/gfx/debug-layer/debug-shader-object.h
parent364e43264b9f69957ddaed8890392d82fb25c822 (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.h2
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