12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #region MIT License
- #endregion
- using System;
- namespace SharpFont
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public enum LoadTarget
- {
-
-
-
-
- Normal = (RenderMode.Normal & 15) << 16,
-
-
-
-
-
-
- Light = (RenderMode.Light & 15) << 16,
-
-
-
-
- Mono = (RenderMode.Mono & 15) << 16,
-
-
-
- Lcd = (RenderMode.Lcd & 15) << 16,
-
-
-
- VerticalLcd = (RenderMode.VerticalLcd & 15) << 16
- }
- }
|