terminal/src/cascadia
Michael Niksa ca33d895a3
Move ConPTY to use til::bitmap (#5024)
## Summary of the Pull Request
Moves the ConPTY drawing mechanism (`VtRenderer`) to use the fine-grained `til::bitmap` individual-dirty-bit tracking mechanism instead of coarse-grained rectangle unions to improve drawing performance by dramatically reducing the total area redrawn.

## PR Checklist
* [x] Part of #778 and #1064 
* [x] I work here
* [x] Tests added and updated.
* [x] I'm a core contributor

## Detailed Description of the Pull Request / Additional comments
- Converted `GetDirtyArea()` interface from `IRenderEngine` to use a vector of `til::rectangle` instead of the `SMALL_RECT` to banhammer inclusive rectangles.
- `VtEngine` now holds and operates on the `til::bitmap` for invalidation regions. All invalidation operation functions that used to be embedded inside `VtEngine` are deleted in favor of using the ones in `til::bitmap`.
- Updated `VtEngine` tracing to use new `til::bitmap` on trace and the new `to_string()` methods detailed below.
- Comparison operators for `til::bitmap` and complementary tests.
- Fixed an issue where the dirty rectangle shortcut in `til::bitmap` was set to 0,0,0,0 by default which means that `|=` on it with each `set()` operation was stretching the rectangle from 0,0. Now it's a `std::optional` so it has no value after just being cleared and will build from whatever the first invalidated rectangle is. Complementary tests added.
- Optional run caching for `til::bitmap` in the `runs()` method since both VT and DX renderers will likely want to generate the set of runs at the beginning of a frame and refer to them over and over through that frame. Saves the iteration and creation and caches inside `til::bitmap` where the chance of invalidation of the underlying data is known best. It is still possible to iterate manually with `begin()` and `end()` from the outside without caching, if desired. Complementary tests added.
- WEX templates added for `til::bitmap` and used in tests.
- `translate()` method for `til::bitmap` which will slide the dirty points in the direction specified by a `til::point` and optionally back-fill the uncovered area as dirty. Complementary tests added.
- Moves all string generation for `til` types `size`, `point`, `rectangle`, and `some` into a `to_string` method on each object such that it can be used in both ETW tracing scenarios AND in the TAEF templates uniformly. Adds a similar method for `bitmap`.
- Add tagging to `_bitmap_const_iterator` such that it appears as a valid **Input Iterator** to STL collections and can be used in a `std::vector` constructor as a range. Adds and cleans up operators on this iterator to match the theoretical requirements for an **Input Iterator**. Complementary tests added.
- Add loose operators to `til` which will allow some basic math operations (+, -, *, /) between `til::size` and `til::point` and vice versa. Complementary tests added. Complementary tests added.
- Adds operators to `til::rectangle` to allow scaling with basic math operations (+, -, *) versus `til::size` and translation with basic math operations (+, -) against `til::point`. Complementary tests added.
- In-place variants of some operations added to assorted `til` objects. Complementary tests added.
- Update VT tests to compare invalidation against the new map structure instead of raw rectangles where possible.

## Validation Steps Performed
- Wrote additional til Unit Tests for all additional operators and functions added to the project to support this operation
- Updated the existing VT renderer tests
- Ran perf check
2020-03-23 15:57:54 +00:00
..
CascadiaPackage Pin the DisplayName to Windows Terminal to fix the UAC prompt (#4995) 2020-03-18 23:19:06 +00:00
inc Convert Tab to a WinRT type (#4350) 2020-02-04 21:51:11 +00:00
LocalTests_TerminalApp Change NULL to nullptr since they are pointers (#4960) 2020-03-20 20:35:12 +00:00
PublicTerminalCore Change NULL to nullptr since they are pointers (#4960) 2020-03-20 20:35:12 +00:00
TerminalApp Gracefully handle json data with the wrong value types (#4961) 2020-03-20 20:35:51 +00:00
TerminalAzBridge Shim the AzureConn through a conhost to stop VT bleeding (#4652) 2020-02-20 16:21:05 -08:00
TerminalConnection Add support for "reflow"ing the Terminal buffer (#4741) 2020-03-12 17:43:37 -07:00
TerminalControl Set the ComponentResourceLocation for our DLL projects (#5031) 2020-03-20 13:08:32 -07:00
TerminalCore Make sure to InvalidateAll on a resize (#5046) 2020-03-20 23:50:59 +00:00
TerminalSettings Define Automation Properties for TermControl (#4732) 2020-02-27 16:37:56 -08:00
UnitTests_TerminalCore Move ConPTY to use til::bitmap (#5024) 2020-03-23 15:57:54 +00:00
ut_app Gracefully handle json data with the wrong value types (#4961) 2020-03-20 20:35:51 +00:00
WindowsTerminal Change NULL to nullptr since they are pointers (#4960) 2020-03-20 20:35:12 +00:00
WindowsTerminalUniversal Rename WTU to zTerminal using the CORE device family resource q… (#4520) 2020-02-10 14:37:24 -08:00
WinRTUtils Display Emojis, Kaomojis, and symbols while in IME mode (#4688) 2020-02-26 18:36:02 +00:00
WpfTerminalControl fix mouse events in the wpf control (#4720) 2020-02-28 14:46:35 -08:00
CascadiaResources.build.items Add Int, Dev and IntDev assets; switch to them (#4006) 2019-12-17 19:57:51 -08:00