diff options
Diffstat (limited to 'tools/gfx/debug-layer/debug-framebuffer.h')
| -rw-r--r-- | tools/gfx/debug-layer/debug-framebuffer.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-framebuffer.h b/tools/gfx/debug-layer/debug-framebuffer.h new file mode 100644 index 000000000..76e05040c --- /dev/null +++ b/tools/gfx/debug-layer/debug-framebuffer.h @@ -0,0 +1,32 @@ +// debug-framebuffer.h +#pragma once +#include "debug-base.h" + +namespace gfx +{ +using namespace Slang; + +namespace debug +{ + +class DebugFramebuffer + : public DebugObject<IFramebuffer> +{ +public: + SLANG_COM_OBJECT_IUNKNOWN_ALL; + +public: + IFramebuffer* getInterface(const Slang::Guid& guid); +}; + +class DebugFramebufferLayout : public DebugObject<IFramebufferLayout> +{ +public: + SLANG_COM_OBJECT_IUNKNOWN_ALL; + +public: + IFramebufferLayout* getInterface(const Slang::Guid& guid); +}; + +} // namespace debug +} // namespace gfx |
