OpenTypeFeatures is an Attribute that represents a set of OpenType feature tag-value pairs, for applying OpenType features to text. OpenType feature tags are four-character codes defined by OpenType that cover things from design features like small caps and swashes to language-specific glyph shapes
| 235 | // after giving it to an AttributedString, or modifying one that comes |
| 236 | // out of an AttributedString, will have no effect. |
| 237 | type OpenTypeFeatures map[OpenTypeTag]uint32 |
| 238 | |
| 239 | func (o OpenTypeFeatures) toLibui() *C.uiAttribute { |
| 240 | otf := C.uiNewOpenTypeFeatures() |
nothing calls this directly
no outgoing calls
no test coverage detected