-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use DirectWrite to render text in the status bar
This makes the status bar use DirectWrite to render text rather than a mix of Uniscribe and GDI. This brings improved text rendering, including sub-pixel positioning and improved handling of colour changes. This includes colour font support on Windows 8.1 and newer.
- Loading branch information
Showing
4 changed files
with
49 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ui_helpers
updated
10 files
+344 −0 | direct_write.cpp | |
+68 −0 | direct_write.h | |
+179 −0 | direct_write_text_out.cpp | |
+9 −0 | direct_write_text_out.h | |
+7 −1 | stdafx.h | |
+7 −2 | ui_helpers.vcxproj | |
+8 −3 | ui_helpers.vcxproj.filters | |
+2 −21 | uniscribe.h | |
+0 −3 | uniscribe_text_out.cpp | |
+24 −0 | uniscribe_text_out.h |