summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2026-09-05 17:23:46 -0700
committerKai Stevenson <kai@kaistevenson.com>2026-09-05 17:23:46 -0700
commit0ee1423cb267363d0b315ae7572eb2e6f98bfa4a (patch)
tree8aa4686bab49adaae8bd03faecc120fbfa309b5e /src/main.rs
parent67aee9ec7f3282cab20f6439f755588135a32af5 (diff)
refactor renderer to separate passes
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index d82389f..1c58426 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -48,7 +48,6 @@ struct Config {
brush_material: MaterialId,
dropper_material: MaterialId,
use_threading: bool,
- cells_render: bool,
debug_render: bool,
debug_render_mode: DebugRenderMode,
// proc gen
@@ -161,7 +160,6 @@ impl Default for App {
brush_radius: 10.0,
brush_material: MaterialId::Sand,
dropper_material: MaterialId::Wood,
- cells_render: true,
debug_render: false,
debug_render_mode: DebugRenderMode::default(),
};