From 5f1244848ee1eaad7218840f268c36e64464eebc Mon Sep 17 00:00:00 2001 From: skal Date: Mon, 9 Feb 2026 19:35:55 +0100 Subject: docs: Streamline headless mode documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: - HEADLESS_MODE.md: 58→32 lines (-45%) - HOWTO.md: Condensed to one-liner + reference - Removed implementation details (in code comments) - Simplified comparison table - Clearer use case description handoff(Claude): Documentation cleanup --- doc/HOWTO.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'doc/HOWTO.md') diff --git a/doc/HOWTO.md b/doc/HOWTO.md index fccfa1e..cafcf4a 100644 --- a/doc/HOWTO.md +++ b/doc/HOWTO.md @@ -47,16 +47,10 @@ cmake --build build -j4 ### Headless Testing ```bash -# Build without GPU -cmake -B build_headless -DDEMO_HEADLESS=ON -cmake --build build_headless -j4 - -# Run simulation (30s default) -./build_headless/demo64k --headless - -# Custom duration -./build_headless/demo64k --headless --duration 60 +cmake -B build_headless -DDEMO_HEADLESS=ON && cmake --build build_headless -j4 +./build_headless/demo64k --headless --duration 30 ``` +See `doc/HEADLESS_MODE.md`. ### Size Measurement ```bash -- cgit v1.2.3