diff options
author | Neil <nyamatongwe@gmail.com> | 2022-02-02 14:01:29 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-02-02 14:01:29 +1100 |
commit | 53ca05457a1d7306defd98ee4a21eb18e6a9be8d (patch) | |
tree | 9f5d39af5c1604d8a84ef9f4c40e5af7a0215f64 /win32 | |
parent | b7345886dca4996d630a267f56fe2d7ce01fc88a (diff) | |
download | scintilla-mirror-53ca05457a1d7306defd98ee4a21eb18e6a9be8d.tar.gz |
Add Supports::ThreadSafeMeasureWidths for platforms to indicate if they support
concurrent calls to MeasureWidths.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/PlatWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 645decb35..9a41614cd 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -1282,6 +1282,7 @@ constexpr Supports SupportsD2D[] = { Supports::FractionalStrokeWidth, Supports::TranslucentStroke, Supports::PixelModification, + Supports::ThreadSafeMeasureWidths, }; constexpr D2D_COLOR_F ColorFromColourAlpha(ColourRGBA colour) noexcept { |