From 172ef7580fd65a4b5ef46d9236dbff071a48ff71 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 12 Aug 2020 19:13:57 -0400 Subject: [PATCH] update notcurses_cell and USAGE: 32MB egcpool max --- USAGE.md | 2 +- doc/man/man3/notcurses_cell.3.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/USAGE.md b/USAGE.md index c3478bd82..024e56d10 100644 --- a/USAGE.md +++ b/USAGE.md @@ -1513,7 +1513,7 @@ useful to use a `cell` when the same styling is used in a discontinuous manner. // // Each cell occupies 16 static bytes (128 bits). The surface is thus ~1.6MB // for a (pretty large) 500x200 terminal. At 80x43, it's less than 64KB. -// Dynamic requirements can add up to 16MB to an ncplane, but such large pools +// Dynamic requirements can add up to 32MB to an ncplane, but such large pools // are unlikely in common use. // // We implement some small alpha compositing. Foreground and background both diff --git a/doc/man/man3/notcurses_cell.3.md b/doc/man/man3/notcurses_cell.3.md index 9e4d3088d..b14410d87 100644 --- a/doc/man/man3/notcurses_cell.3.md +++ b/doc/man/man3/notcurses_cell.3.md @@ -132,7 +132,7 @@ of **cell_load()**, **cell_prime()**, or **cell_duplicate()**. All of these functions first call **cell_release()**, as does **cell_load_simple()**. When done using a **cell** entirely, call **cell_release()**. **ncplane_destroy()** will free up the memory used by the **cell**, but the backing egcpool has a -maximum size of 16MiB, and failure to release **cell**s can eventually block new +maximum size of 32MiB, and failure to release **cell**s can eventually block new output. # RETURN VALUES