From 4b0e6bb49c90a9d802086215533ad615748d0415 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 4 Aug 2026 10:00:53 +0530 Subject: [PATCH] ... --- kitty/shaders.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/shaders.c b/kitty/shaders.c index 3e49d0b82..2e7c26b72 100644 --- a/kitty/shaders.c +++ b/kitty/shaders.c @@ -2025,8 +2025,8 @@ run_custom_end_shader(OSWindow *os_window, float sx, float sy, monotonic_t now) #undef FILL_COLOR d->viewport_width = (uint32_t)os_window->viewport_width; d->viewport_height = (uint32_t)os_window->viewport_height; - d->timestamp = ((float)monotonic_t_to_ms(now)) / 1e3; - d->last_rendered_at = ((float)monotonic_t_to_ms(os_window->last_rendered_at)) / 1e3; + d->timestamp = ((float)monotonic_t_to_ms(now)) / 1e3f; + d->last_rendered_at = ((float)monotonic_t_to_ms(os_window->last_rendered_at)) / 1e3f; unmap_vao_buffer(custom_end_vao_idx, 0); bind_vao_uniform_buffer(custom_end_vao_idx, 0, CUSTOM_END_DATA_BINDING_POINT);