diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 12 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 13 |
2 files changed, 22 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 9fbb50350..50409c0af 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -128,7 +128,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 17 June 2021 NH</p> + <p>Last edited 25 June 2021 NH</p> <p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new <a href="Lexilla.html">Lexilla</a> project.<br /> @@ -4511,8 +4511,14 @@ struct Sci_TextToFind { is retained after being presented which may prevent drawing failures on some cards and drivers. <code>SC_TECHNOLOGY_DIRECTWRITEDC</code> differs from <code>SC_TECHNOLOGY_DIRECTWRITE</code> by using DirectWrite to draw into a GDI DC. - Since Direct2D buffers drawing, Scintilla's buffering can be turned off with - <code>SCI_SETBUFFEREDDRAW(0)</code>. + </p> + <p> + On Win32, buffered drawing is set to a reasonable value for the technology: on for GDI and off for Direct2D + as Direct2D performs its own buffering. + This can be changed after setting technology with + <a class="seealso" href="#SCI_SETBUFFEREDDRAW">SCI_SETBUFFEREDDRAW</a>. + </p> + <p> When using DirectWrite, you can use <a class="message" href="#SCI_SETFONTLOCALE"><code>SCI_SETFONTLOCALE</code></a> to set an appropriate font locale to draw text with expected language-dependent glyphs. diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 634a7ff50..542fd4eb9 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -565,6 +565,19 @@ </table> <h2>Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla511.zip">Release 5.1.1</a> + </h3> + <ul> + <li> + Released 23 June 2021. + </li> + <li> + On Win32, when technology is changed, buffering is set to a reasonable value for the technology: + on for GDI and off for Direct2D as Direct2D performs its own buffering. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1400/">Feature #1400</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla510.zip">Release 5.1.0</a> </h3> <ul> |