summaryrefslogtreecommitdiff
path: root/tools/graphics-app-framework/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/graphics-app-framework/gui.h')
-rw-r--r--tools/graphics-app-framework/gui.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/graphics-app-framework/gui.h b/tools/graphics-app-framework/gui.h
deleted file mode 100644
index 680cea14b..000000000
--- a/tools/graphics-app-framework/gui.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// gui.h
-#pragma once
-
-#include "slang-gfx.h"
-#include "vector-math.h"
-#include "window.h"
-#include "slang-com-ptr.h"
-#include "external/imgui/imgui.h"
-#include "source/core/slang-basic.h"
-
-namespace gfx {
-
-struct GUI : Slang::RefObject
-{
- GUI(Window* window, IRenderer* renderer, ICommandQueue* queue, IFramebufferLayout* framebufferLayout);
- ~GUI();
-
- void beginFrame();
- void endFrame(IFramebuffer* framebuffer);
-
-private:
- Slang::ComPtr<IRenderer> renderer;
- Slang::ComPtr<ICommandQueue> queue;
- Slang::ComPtr<IRenderPassLayout> renderPass;
- Slang::ComPtr<IPipelineState> pipelineState;
- Slang::ComPtr<IDescriptorSetLayout> descriptorSetLayout;
- Slang::ComPtr<IPipelineLayout> pipelineLayout;
- Slang::ComPtr<ISamplerState> samplerState;
-};
-
-} // gfx