diff options
Diffstat (limited to 'tools/gfx/debug-layer/debug-sampler-state.h')
| -rw-r--r-- | tools/gfx/debug-layer/debug-sampler-state.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-sampler-state.h b/tools/gfx/debug-layer/debug-sampler-state.h new file mode 100644 index 000000000..d0b082ec5 --- /dev/null +++ b/tools/gfx/debug-layer/debug-sampler-state.h @@ -0,0 +1,24 @@ +// debug-sampler-state.h +#pragma once +#include "debug-base.h" + +namespace gfx +{ +using namespace Slang; + +namespace debug +{ + +class DebugSamplerState : public DebugObject<ISamplerState> +{ +public: + SLANG_COM_OBJECT_IUNKNOWN_ALL; + +public: + ISamplerState* getInterface(const Slang::Guid& guid); + virtual SLANG_NO_THROW Result SLANG_MCALL + getNativeHandle(InteropHandle* outNativeHandle) override; +}; + +} // namespace debug +} // namespace gfx |
