From e4ab550ea1b4e20107f905f21accd6c31c7861c5 Mon Sep 17 00:00:00 2001 From: Qwerasd Date: Thu, 8 Aug 2024 19:09:30 -0400 Subject: [PATCH] comment --- src/renderer/metal/cell.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/metal/cell.zig b/src/renderer/metal/cell.zig index 23c553371..a56165ecc 100644 --- a/src/renderer/metal/cell.zig +++ b/src/renderer/metal/cell.zig @@ -75,6 +75,8 @@ fn ArrayListPool(comptime T: type) type { pub const Contents = struct { size: renderer.GridSize = .{ .rows = 0, .columns = 0 }, + /// Flat array containing cell background colors for the terminal grid. + /// Index with `bg_cells[y * size.columns + x]`. bg_cells: []mtl_shaders.CellBg = undefined, /// The ArrayListPool which holds all of the foreground cells. When sized