Fix latency by using a sensible present mode
This commit is contained in:
parent
3e56493872
commit
3096a42a79
@ -177,9 +177,9 @@ void run_app()
|
|||||||
|
|
||||||
renderer_window_frame_begin(renderer, render_window);
|
renderer_window_frame_begin(renderer, render_window);
|
||||||
|
|
||||||
u32 box_width = 10;
|
u32 box_width = 100;
|
||||||
u32 box_height = 10;
|
u32 box_height = 100;
|
||||||
auto box_color = Color4(1, 0, 0, 1);
|
auto box_color = Color4(1, 1, 1, 1);
|
||||||
|
|
||||||
Vertex box_vertices[] = {
|
Vertex box_vertices[] = {
|
||||||
{
|
{
|
||||||
|
@ -1444,7 +1444,7 @@ fn void swapchain_recreate(Renderer* renderer, RenderWindow* window, VkSurfaceCa
|
|||||||
.pQueueFamilyIndices = queue_family_indices,
|
.pQueueFamilyIndices = queue_family_indices,
|
||||||
.preTransform = surface_capabilities.currentTransform,
|
.preTransform = surface_capabilities.currentTransform,
|
||||||
.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
|
.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
|
||||||
.presentMode = VK_PRESENT_MODE_FIFO_KHR,
|
.presentMode = VK_PRESENT_MODE_MAILBOX_KHR,
|
||||||
.clipped = 0,
|
.clipped = 0,
|
||||||
.oldSwapchain = window->swapchain,
|
.oldSwapchain = window->swapchain,
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user