From fc3f455512d589195178e43a8e2e9b561134a468 Mon Sep 17 00:00:00 2001 From: chai51 Date: Mon, 25 Nov 2024 16:08:44 +0800 Subject: [PATCH] Fix OutV set FrameStore --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 64146f7..0007bc4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -31759,7 +31759,7 @@

Intermediate output preparation
  • The array OutV is (w + subX) >> subX samples across by (h + subY) >> subY samples down and the sample at location x samples across and y samples -down is given by OutV[ y ][ x ] = FrameStore[ frame_to_show_map_idx ][ 2 ][ x ][ y ] +down is given by OutV[ y ][ x ] = FrameStore[ frame_to_show_map_idx ][ 2 ][ y ][ x ] with x = 0..((w + subX) >> subX) - 1 and y = 0..((h + subY) >> subY) - 1.