MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / resize

Method resize

Source/Falcor/Core/API/Swapchain.cpp:78–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78void Swapchain::resize(uint32_t width, uint32_t height)
79{
80 FALCOR_CHECK(width > 0, "Invalid width");
81 FALCOR_CHECK(height > 0, "Invalid height");
82
83 mImages.clear();
84 mpDevice->wait();
85 FALCOR_GFX_CALL(mGfxSwapchain->resize(width, height));
86 prepareImages();
87}
88
89bool Swapchain::isOccluded()
90{

Callers 11

createNvApiVsExDescFunction · 0.45
DescMethod · 0.45
FboMethod · 0.45
TextureMethod · 0.45
addBufferLayoutMethod · 0.45
DescMethod · 0.45
GraphicsStateMethod · 0.45
checkFileModifiedStatusFunction · 0.45
initMethod · 0.45
RtBindingTableMethod · 0.45

Calls 2

clearMethod · 0.45
waitMethod · 0.45

Tested by

no test coverage detected