Fix latency by using a sensible present mode

This commit is contained in:
David Gonzalez Martin 2024-12-03 20:50:43 -06:00 committed by David
parent 3e56493872
commit 3096a42a79
2 changed files with 4 additions and 4 deletions

View File

@ -177,9 +177,9 @@ void run_app()
renderer_window_frame_begin(renderer, render_window);
u32 box_width = 10;
u32 box_height = 10;
auto box_color = Color4(1, 0, 0, 1);
u32 box_width = 100;
u32 box_height = 100;
auto box_color = Color4(1, 1, 1, 1);
Vertex box_vertices[] = {
{

View File

@ -1444,7 +1444,7 @@ fn void swapchain_recreate(Renderer* renderer, RenderWindow* window, VkSurfaceCa
.pQueueFamilyIndices = queue_family_indices,
.preTransform = surface_capabilities.currentTransform,
.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
.presentMode = VK_PRESENT_MODE_FIFO_KHR,
.presentMode = VK_PRESENT_MODE_MAILBOX_KHR,
.clipped = 0,
.oldSwapchain = window->swapchain,
};