summaryrefslogtreecommitdiffstats
path: root/tools/platform/gui.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-03-31 11:35:17 -0700
committerGitHub <noreply@github.com>2021-03-31 11:35:17 -0700
commit3f1632a1450a5879f337b4bd178e48880cd583f8 (patch)
treedb4adc2ac0f6113dfd4a97a0e2f7a0c4312ef48b /tools/platform/gui.h
parent5fde038b1a6b3c8b335cd5b380c3ee8d15403052 (diff)
`gfx` explicit transient resource management. (#1774)
Diffstat (limited to 'tools/platform/gui.h')
-rw-r--r--tools/platform/gui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/platform/gui.h b/tools/platform/gui.h
index ef5310cd4..e3975f3ff 100644
--- a/tools/platform/gui.h
+++ b/tools/platform/gui.h
@@ -19,7 +19,7 @@ struct GUI : Slang::RefObject
~GUI();
void beginFrame();
- void endFrame(gfx::IFramebuffer* framebuffer);
+ void endFrame(gfx::ITransientResourceHeap* transientHeap, gfx::IFramebuffer* framebuffer);
private:
Slang::ComPtr<gfx::IDevice> device;