[squeak-dev] The Trunk: TrueType-mt.96.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jul 2 10:11:11 UTC 2022


Marcel Taeumel uploaded a new version of TrueType to project The Trunk:
http://source.squeak.org/trunk/TrueType-mt.96.mcz

==================== Summary ====================

Name: TrueType-mt.96
Author: mt
Time: 2 July 2022, 12:11:10.73687 pm
UUID: c94bc89e-87ea-6e42-aaac-785eec03f09b
Ancestors: TrueType-ct.95

Complements 61Deprecated-mt.1.

=============== Diff against TrueType-ct.95 ===============

Item was removed:
- ----- Method: TTFontDescription>>blankGlyphForSeparators (in category 'migration') -----
- blankGlyphForSeparators
- 
- 	| space |
- 	self flag: #deprecated. "See TTCharacterMappingTable >> #mapAllSeparatorsToSpace."
- 
- 	space := (self at: Character space charCode) copy.
- 	space contours: #().
- 	Character separators do: [:s | 
- 		glyphTable at: s charCode +1 put: space.
- 	].
- !

Item was removed:
- ----- Method: TTFontDescription>>renderGlyph:height:fgColor:bgColor:depth: (in category 'rendering') -----
- renderGlyph: code height: fontHeight fgColor: fgColor bgColor: bgColor depth: depth
- 	"Render the glyph with the given code point at the specified pixel height."
- 
- 	self flag: #deprecated.
- 	^ self
- 		renderGlyph: code height: fontHeight extraScale: 1.0
- 		fgColor: fgColor bgColor: bgColor depth: depth
- 		lineGlyph: nil lineGlyphWidth: 0 emphasis: 0!

Item was removed:
- ----- Method: TTFontDescription>>renderGlyph:height:fgColor:bgColor:depth:lineGlyph:lineGlyphWidth:emphasis: (in category 'rendering') -----
- renderGlyph: code height: fontHeight fgColor: fgColor bgColor: bgColor depth: depth lineGlyph: lineGlyphOrNil lineGlyphWidth: lWidth emphasis: emphasis
- 	"Render the glyph with the given code point at the specified pixel height. Underline it with lineGlyph."
- 	
- 	self flag: #deprecated.
- 	^ self
- 		renderGlyph: code height: fontHeight extraScale: 1.0
- 		fgColor: fgColor bgColor: bgColor depth: depth
- 		lineGlyph: lineGlyphOrNil lineGlyphWidth: lWidth emphasis: emphasis!



More information about the Squeak-dev mailing list