Hi. I found that when creating Swapchain with swapEffect = discard, then dispose it and create new swapchain with swapEffect = flipsequental, then dispose it and create again swapchain with swapeffect = discard, It will stop presenting anything on the screen and will be no error.
Image just stop updating. But if I create new swapchain with swapEffect = flipsequental, presenting starts working again, but from that moment you cannot see anything if you create swapchain with discard effect during current lifecycle.
Seems this issue causing only for discard -> flipsequental -> discard sequence.
Could someone say is this by design?
I have tested this on 3.1.1 and also on 3.0.2. Issue is reproducible on both versions.
Hi. I found that when creating Swapchain with
swapEffect = discard
, then dispose it and create new swapchain withswapEffect = flipsequental
, then dispose it and create again swapchain withswapeffect = discard
, It will stop presenting anything on the screen and will be no error. Image just stop updating. But if I create new swapchain withswapEffect = flipsequental
, presenting starts working again, but from that moment you cannot see anything if you create swapchain withdiscard
effect during current lifecycle. Seems this issue causing only fordiscard -> flipsequental -> discard
sequence. Could someone say is this by design?I have tested this on 3.1.1 and also on 3.0.2. Issue is reproducible on both versions.