diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2022-01-17 11:23:01 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2022-01-17 11:23:01 +1100 |
commit | 5aff87386c21d5a345eff5b1982f4171577a922c (patch) | |
tree | b8692c06f1461ae0c5c65988fa89f795a42586ea /cocoa/PlatCocoa.h | |
parent | b0f2b8380b94fc8dfb51253c8b14c48f5e2fff37 (diff) | |
download | scintilla-mirror-5aff87386c21d5a345eff5b1982f4171577a922c.tar.gz |
Feature [feature-requests:#1427] Make Cocoa MeasureWidths and
MeasureWidthsUTF8 reentrant so they can be called safely from multiple threads.
Diffstat (limited to 'cocoa/PlatCocoa.h')
-rw-r--r-- | cocoa/PlatCocoa.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cocoa/PlatCocoa.h b/cocoa/PlatCocoa.h index 708bdcd2b..d63ad63c6 100644 --- a/cocoa/PlatCocoa.h +++ b/cocoa/PlatCocoa.h @@ -45,9 +45,6 @@ private: CGContextRef gc; - /** The text layout instance */ - std::unique_ptr<QuartzTextLayout> textLayout; - /** If the surface is a bitmap context, contains a reference to the bitmap data. */ std::unique_ptr<uint8_t[]> bitmapData; /** If the surface is a bitmap context, stores the dimensions of the bitmap. */ |