diff options
author | nyamatongwe <devnull@localhost> | 2011-08-11 10:32:39 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-08-11 10:32:39 +1000 |
commit | f09627bdb8c597bcc8055b6ce370062a06ad1c37 (patch) | |
tree | 559530ca5161394842d67a1677950f1b3863e75c /include | |
parent | 6860b289d19541ccb8d5be31c81c0f1aa992e9d7 (diff) | |
download | scintilla-mirror-f09627bdb8c597bcc8055b6ce370062a06ad1c37.tar.gz |
Implemented parallel stacks for GDI and DirectWrite. GDI works
but DirectWrite does not draw well and eventuall crashes.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 0aec0c8df..c8ffba04e 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -828,7 +828,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SCROLLTOSTART 2628 #define SCI_SCROLLTOEND 2629 #define SC_TECHNOLOGY_DEFAULT 0 -#define SC_TECHNOLOGY_DIRECTWRITE 0 +#define SC_TECHNOLOGY_DIRECTWRITE 1 #define SCI_SETTECHNOLOGY 2630 #define SCI_GETTECHNOLOGY 2631 #define SCI_STARTRECORD 3001 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index a578bf3fc..c5b58caae 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2195,7 +2195,7 @@ fun void ScrollToStart=2628(,) fun void ScrollToEnd=2629(,) val SC_TECHNOLOGY_DEFAULT=0 -val SC_TECHNOLOGY_DIRECTWRITE=0 +val SC_TECHNOLOGY_DIRECTWRITE=1 # Set the technolgy used. set void SetTechnology=2630(int technology,) |