-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix termcs1 special case kluge, add MWTF_CMAP_DEFAULT/0/1 to GdSetFon…
…tAttr for freetype
- Loading branch information
Showing
5 changed files
with
40 additions
and
12 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef _MWTYPES_H | ||
#define _MWTYPES_H | ||
/* | ||
* Copyright (c) 1999, 2000, 2001, 2002, 2003, 2005, 2010 Greg Haerr <[email protected]> | ||
* Copyright (c) 1999, 2000, 2001, 2002, 2003, 2005, 2010, 2011 Greg Haerr <[email protected]> | ||
* Portions Copyright (c) 2002 by Koninklijke Philips Electronics N.V. | ||
* | ||
* Exported Microwindows engine typedefs and defines | ||
|
@@ -79,6 +79,10 @@ | |
#define MWTF_UNDERLINE 0x0004 /* draw underline*/ | ||
#define MWTF_BOLD 0x0008 /* draw bold glyph (not present on all renderers)*/ | ||
|
||
#define MWTF_CMAP_DEFAULT 0x0010 /* use default (unicode) charset in truetype font (not required)*/ | ||
#define MWTF_CMAP_0 0x0020 /* use charmap 0 in truetype font*/ | ||
#define MWTF_CMAP_1 0x0040 /* use charmap 1 in truetype font*/ | ||
|
||
#define MWTF_FREETYPE 0x1000 /* FIXME: remove*/ | ||
#define MWTF_SCALEHEIGHT 0x2000 /* font can scale height seperately*/ | ||
#define MWTF_SCALEWIDTH 0x4000 /* font can scale width seperately*/ | ||
|