Skip to content
Snippets Groups Projects
Verified Commit e7f8c46f authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#82] Drop frames with to low size (minimum 2x2 pixel)

parent c8f2c58b
No related branches found
No related tags found
1 merge request!70Resolve "Voxel cone tracing"
Pipeline #26153 passed
...@@ -157,6 +157,13 @@ namespace vkcv { ...@@ -157,6 +157,13 @@ namespace vkcv {
* Destructor of #Window, terminates GLFW * Destructor of #Window, terminates GLFW
*/ */
virtual ~Window(); virtual ~Window();
/**
* gets the windows framebuffer size
* @param width
* @param height
*/
void getFramebufferSize(int& width, int& height) const;
}; };
} }
...@@ -550,6 +550,14 @@ int main(int argc, const char** argv) { ...@@ -550,6 +550,14 @@ int main(int argc, const char** argv) {
if (!core.beginFrame(swapchainWidth, swapchainHeight)) { if (!core.beginFrame(swapchainWidth, swapchainHeight)) {
continue; continue;
} }
if ((swapchainWidth < 2) || (swapchainHeight < 2)) {
std::cerr << "A" << std::endl;
}
if ((windowWidth < 2) || (windowHeight < 2)) {
std::cerr << "B" << std::endl;
}
if ((swapchainWidth != windowWidth) || ((swapchainHeight != windowHeight))) { if ((swapchainWidth != windowWidth) || ((swapchainHeight != windowHeight))) {
depthBuffer = core.createImage(depthBufferFormat, swapchainWidth, swapchainHeight, 1, false, false, false, msaa).getHandle(); depthBuffer = core.createImage(depthBufferFormat, swapchainWidth, swapchainHeight, 1, false, false, false, msaa).getHandle();
...@@ -567,6 +575,14 @@ int main(int argc, const char** argv) { ...@@ -567,6 +575,14 @@ int main(int argc, const char** argv) {
bloomFlares.updateImageDimensions(windowWidth, windowHeight); bloomFlares.updateImageDimensions(windowWidth, windowHeight);
} }
if ((swapchainWidth < 2) || (swapchainHeight < 2)) {
std::cerr << "C" << std::endl;
}
if ((windowWidth < 2) || (windowHeight < 2)) {
std::cerr << "D" << std::endl;
}
auto end = std::chrono::system_clock::now(); auto end = std::chrono::system_clock::now();
auto deltatime = std::chrono::duration_cast<std::chrono::microseconds>(end - start); auto deltatime = std::chrono::duration_cast<std::chrono::microseconds>(end - start);
......
...@@ -160,8 +160,24 @@ namespace vkcv ...@@ -160,8 +160,24 @@ namespace vkcv
m_swapchain.updateSwapchain(m_Context, m_window); m_swapchain.updateSwapchain(m_Context, m_window);
const auto swapchainViews = createSwapchainImageViews(m_Context, m_swapchain); const auto swapchainViews = createSwapchainImageViews(m_Context, m_swapchain);
const auto swapchainImages = m_Context.getDevice().getSwapchainImagesKHR(m_swapchain.getSwapchain()); const auto swapchainImages = m_Context.getDevice().getSwapchainImagesKHR(m_swapchain.getSwapchain());
m_ImageManager->setSwapchainImages(swapchainImages, swapchainViews, width, height, m_swapchain.getFormat()); const auto& extent = m_swapchain.getExtent();
m_ImageManager->setSwapchainImages(
swapchainImages,
swapchainViews,
extent.width, extent.height,
m_swapchain.getFormat()
);
}
const auto& extent = m_swapchain.getExtent();
width = extent.width;
height = extent.height;
if ((width < 2) || (height < 2)) {
return false;
} }
if (acquireSwapchainImage() != Result::SUCCESS) { if (acquireSwapchainImage() != Result::SUCCESS) {
...@@ -172,11 +188,6 @@ namespace vkcv ...@@ -172,11 +188,6 @@ namespace vkcv
m_Context.getDevice().waitIdle(); // TODO: this is a sin against graphics programming, but its getting late - Alex m_Context.getDevice().waitIdle(); // TODO: this is a sin against graphics programming, but its getting late - Alex
const auto& extent = m_swapchain.getExtent();
width = extent.width;
height = extent.height;
m_ImageManager->setCurrentSwapchainImageIndex(m_currentSwapchainImageIndex); m_ImageManager->setCurrentSwapchainImageIndex(m_currentSwapchainImageIndex);
return (m_currentSwapchainImageIndex != std::numeric_limits<uint32_t>::max()); return (m_currentSwapchainImageIndex != std::numeric_limits<uint32_t>::max());
......
...@@ -78,10 +78,13 @@ namespace vkcv ...@@ -78,10 +78,13 @@ namespace vkcv
if(physicalDevice.getSurfaceCapabilitiesKHR(surface,&surfaceCapabilities) != vk::Result::eSuccess){ if(physicalDevice.getSurfaceCapabilitiesKHR(surface,&surfaceCapabilities) != vk::Result::eSuccess){
throw std::runtime_error("cannot get surface capabilities. There is an issue with the surface."); throw std::runtime_error("cannot get surface capabilities. There is an issue with the surface.");
} }
int fb_width, fb_height;
window.getFramebufferSize(fb_width, fb_height);
VkExtent2D extent2D = { VkExtent2D extent2D = {
static_cast<uint32_t>(window.getWidth()), static_cast<uint32_t>(fb_width),
static_cast<uint32_t>(window.getHeight()) static_cast<uint32_t>(fb_height)
}; };
extent2D.width = std::max(surfaceCapabilities.minImageExtent.width, std::min(surfaceCapabilities.maxImageExtent.width, extent2D.width)); extent2D.width = std::max(surfaceCapabilities.minImageExtent.width, std::min(surfaceCapabilities.maxImageExtent.width, extent2D.width));
......
...@@ -181,4 +181,9 @@ namespace vkcv { ...@@ -181,4 +181,9 @@ namespace vkcv {
GLFWwindow *Window::getWindow() const { GLFWwindow *Window::getWindow() const {
return m_window; return m_window;
} }
void Window::getFramebufferSize(int &width, int &height) const {
glfwGetFramebufferSize(m_window, &width, &height);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment