Important: The information in this document is obsolete and should not be used for new development.
Text Face Style Omit Byte Masks and Shifts
ThegxOmitFaceMaskenumeration defines which bits in an omit byte correspond to the data compression opcode for the field descriptors in thegxTextFacestructure. The sequence of data is also defined. The omit byte and its related data sequence is given in the section "Text Face Data" beginning on page 7-39.
enum gxOmitFaceMask { gxOmitFaceLayersMask = 0xC0, gxOmitFaceMappingMask= 0x30 };Constant descriptions
Once one of the
- gxOmitFaceLayersMask
 - The mask used to select the data compression bits for the
 faceLayersfield descriptor.- gxOmitFaceMappingMask
 - The mask used to select the data compression bits for the
 advanceMappingfield descriptor.gxOmitFaceMaskenumeration masks has been used to select a data compression opcode for a field descriptor in thegxTextFacestructure, the corresponding bit shift from the gxOmitFaceShift enumeration can be applied to the selected bits. The selected bits must be moved to the right by the indicated number of bits to isolate the data compression opcode so that it can be compared to other values.
enum gxOmitFaceShift { gxOmitFaceLayersShift = 6, gxOmitFaceMappingShift= 4 };Constant descriptions
- gxOmitFaceLayersShift
 - The bit shift required to isolate the compression bits for the
 faceLayersfield descriptor.- gxOmitFaceMappingShift
 - The bit shift required to isolate the compression bits for the
 advanceMappingfield descriptor.SEE ALSO
The section "Text Face Data" beginning on page 7-39 provides a full descrtiption of thegxTextFacestructure.