MBMGlyphsRasterizationMode.h 712 B

123456789101112131415
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Describes glyphs rasterization modes. */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBMGlyphsRasterizationMode)
  6. {
  7. /** No glyphs are rasterized locally. All glyphs are loaded from the server. */
  8. MBMGlyphsRasterizationModeNoGlyphsRasterizedLocally,
  9. /** Ideographs are rasterized locally, and they are not loaded from the server. */
  10. MBMGlyphsRasterizationModeIdeographsRasterizedLocally,
  11. /** All glyphs are rasterized locally. No glyphs are loaded from the server. */
  12. MBMGlyphsRasterizationModeAllGlyphsRasterizedLocally
  13. } NS_SWIFT_NAME(GlyphsRasterizationMode);