From 6806ef94554a7c2eb8d51c8b1415b737349121df Mon Sep 17 00:00:00 2001 From: Thanassis Tsiodras Date: Sat, 16 Jan 2021 00:08:23 +0100 Subject: [PATCH] Update documentation. --- README | 10 +++++++--- README.md | 12 +++++++----- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README b/README index 32da31f..0af1579 100644 --- a/README +++ b/README @@ -9,7 +9,7 @@ COMPILE/INSTALL/RUN Windows ------- Windows users can download and run a pre-compiled Windows binary -[here](https://github.com/ttsiodras/MandelbrotSSE/releases/download/2.2/mandelSSE-win32-2.2.zip). +[here](https://github.com/ttsiodras/MandelbrotSSE/releases/download/2.3/mandelSSE-win32-2.3.zip). After decompressing, you can simply execute either one of the two .bat files. The 'autopilot' one zooms in a specific location, while the other @@ -46,13 +46,17 @@ You can then simply... $ src/mandelSSE (Runs in autopilot in 1024x768 window, using XaoS) - $ src/mandelSSE -s -m 800 600 + $ src/mandelSSE -s -m 1280 720 (Runs in mouse-driven SSE mode, in a 800x600 window) (left-click zooms-in, right-click zooms out) - $ src/mandelSSE -x -m 800 600 + $ src/mandelSSE -x -m 1280 720 (same as before, but in XaoS mode - much faster, esp during deep zooms) +For ultimate speed, disable the frame limiter (defaults to 60fps) + + $ src/mandelSSE -x -m -f 0 1280 720 + WHAT IS THIS, AGAIN? ==================== diff --git a/README.md b/README.md index 32da31f..478937a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ COMPILE/INSTALL/RUN Windows ------- Windows users can download and run a pre-compiled Windows binary -[here](https://github.com/ttsiodras/MandelbrotSSE/releases/download/2.2/mandelSSE-win32-2.2.zip). +[here](https://github.com/ttsiodras/MandelbrotSSE/releases/download/2.3/mandelSSE-win32-2.3.zip). After decompressing, you can simply execute either one of the two .bat files. The 'autopilot' one zooms in a specific location, while the other @@ -27,8 +27,6 @@ Make sure you have libSDL installed - then... $ ./configure $ make -You can then simply... - $ src/mandelSSE -h Usage: ./src/mandelSSE [-a] [-s|-x] [-h] [-f rate] [WIDTH HEIGHT] @@ -46,13 +44,17 @@ You can then simply... $ src/mandelSSE (Runs in autopilot in 1024x768 window, using XaoS) - $ src/mandelSSE -s -m 800 600 + $ src/mandelSSE -s -m 1280 720 (Runs in mouse-driven SSE mode, in a 800x600 window) (left-click zooms-in, right-click zooms out) - $ src/mandelSSE -x -m 800 600 + $ src/mandelSSE -x -m 1280 720 (same as before, but in XaoS mode - much faster, esp during deep zooms) +For ultimate speed, disable the frame limiter (defaults to 60fps) + + $ src/mandelSSE -x -m -f 0 1280 720 + WHAT IS THIS, AGAIN? ====================