From 14a87c82693c3cab88b682196999384261af3fdb Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Thu, 24 Oct 2024 20:51:08 -0600 Subject: [PATCH] Removed comment --- client/src/draw.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/client/src/draw.c b/client/src/draw.c index 5deef30..baf4685 100644 --- a/client/src/draw.c +++ b/client/src/draw.c @@ -1,13 +1,6 @@ #include "draw.h" #include "gpu.h" -/* - * Must be updated if any of the following changes - * - ui_context->max_containers <- uint32 - * - ui_context->containers[*].layer_count <- uint32 - * - ui_context->containers[*].layers[*].address <- device address - * Basically, needs to be re-run whenever the number of layers/containers changes - */ void record_ui_compute(VkCommandBuffer command_buffer, UIContext* ui_context, double time) { UIPushConstant push = { .time = (float)time, @@ -64,13 +57,6 @@ void record_ui_compute(VkCommandBuffer command_buffer, UIContext* ui_context, do } } -/* - * Must be updated if any of the following changes - * - ui_context->max_containers <- uint32 - * - ui_context->containers[*].layer_count <- uint32 - * - ui_context->containers[*].layers[*].address <- device address - * Basically, needs to be re-run whenever the number of layers/containers changes - */ void record_ui_draw(VkCommandBuffer command_buffer, UIContext* ui_context, double time) { UIPushConstant push = { .time = (float)time,