From 7a3d3162819d481ab8050d3960e567cb9e63b1e6 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Sun, 13 Oct 2024 14:11:53 -0600 Subject: [PATCH] Removed debug print --- client/src/pipeline.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/src/pipeline.c b/client/src/pipeline.c index d47a575..f24fa1a 100644 --- a/client/src/pipeline.c +++ b/client/src/pipeline.c @@ -337,9 +337,6 @@ VkResult create_ui_descriptor_set(VkDevice device, VmaAllocator allocator, VkExt glm_mat4_identity(ui_uniform.screen); glm_translate(ui_uniform.screen, screen_offset); glm_scale(ui_uniform.screen, screen_scale); - for(uint32_t i = 0; i < 4; i ++) { - fprintf(stderr, "%f %f %f %f\n", ui_uniform.screen[0][i], ui_uniform.screen[1][i], ui_uniform.screen[2][i], ui_uniform.screen[3][i]); - } memcpy(mapped, &ui_uniform, sizeof(ui_uniform)); vmaUnmapMemory(allocator, *ui_descriptor_memory);