terminal/src/renderer
Michael Niksa a8b4044630
Use memory pool for PolyTextOut items in GDI Renderer (#8619)
Converts the poly text out string and width buffers to use a memory pool since we free/alloc those every frame and are just going to reuse them over and over. 

## PR Checklist
* [x] Supports #3075
* [x] I work here.
* [x] Profiled memory before/after. Tested manually with `big.txt`.

## Detailed Description of the Pull Request / Additional comments
- Sets up a PMR memory pool for the GDI Engine. It tends to alloc and free a bunch of little buffers during painting frames. The pool will likely hold onto that memory frame over frame, but we'd just be using it again and again and again anyway. So this way we avoid all the system memory allocator locks and syscalls.

## Validation Steps Performed
- Ran `big.txt` about 10x in the window. Checked WPR/WPA profile output before/after.
2021-01-05 22:10:06 +00:00
..
base Fix rendering of DBCS characters when partially off screen (#8438) 2020-12-04 00:39:23 +00:00
dx Add support for the "italic" graphic rendition attribute (#8580) 2020-12-18 11:23:54 -08:00
gdi Use memory pool for PolyTextOut items in GDI Renderer (#8619) 2021-01-05 22:10:06 +00:00
inc Add support for autodetecting URLs and making hyperlinks (#7691) 2020-10-28 20:24:43 +00:00
uia Replace basic_string_view<T> with span<const T> (#6921) 2020-07-15 16:40:42 +00:00
vt Change backslashes in include statements to forward slashes (#8205) 2020-11-25 21:02:10 +00:00
wddmcon Change backslashes in include statements to forward slashes (#8205) 2020-11-25 21:02:10 +00:00
dirs Merged PR 4645239: [Git2Git] Merged PR 4644345: conhost: disable the DX renderer in inbox builds 2020-05-05 23:03:07 +00:00