RasterFlags.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #region MIT License
  2. /*Copyright (c) 2012 Robert Rouhani <robert.rouhani@gmail.com>
  3. SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
  4. Permission is hereby granted, free of charge, to any person obtaining a copy of
  5. this software and associated documentation files (the "Software"), to deal in
  6. the Software without restriction, including without limitation the rights to
  7. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  8. of the Software, and to permit persons to whom the Software is furnished to do
  9. so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.*/
  19. #endregion
  20. using System;
  21. namespace SharpFont
  22. {
  23. /// <summary>
  24. /// A list of bit flag constants as used in the ‘flags’ field of a <see cref="RasterParams"/> structure.
  25. /// </summary>
  26. [Flags]
  27. public enum RasterFlags
  28. {
  29. /// <summary>
  30. /// This value is 0.
  31. /// </summary>
  32. Default = 0x0,
  33. /// <summary>
  34. /// This flag is set to indicate that an anti-aliased glyph image should be generated. Otherwise, it will be
  35. /// monochrome (1-bit).
  36. /// </summary>
  37. AntiAlias = 0x1,
  38. /// <summary><para>
  39. /// This flag is set to indicate direct rendering. In this mode, client applications must provide their own
  40. /// span callback. This lets them directly draw or compose over an existing bitmap. If this bit is not set, the
  41. /// target pixmap's buffer must be zeroed before rendering.
  42. /// </para><para>
  43. /// Note that for now, direct rendering is only possible with anti-aliased glyphs.
  44. /// </para></summary>
  45. Direct = 0x2,
  46. /// <summary><para>
  47. /// This flag is only used in direct rendering mode. If set, the output will be clipped to a box specified in
  48. /// the ‘clip_box’ field of the <see cref="RasterParams"/> structure.
  49. /// </para><para>
  50. /// Note that by default, the glyph bitmap is clipped to the target pixmap, except in direct rendering mode
  51. /// where all spans are generated if no clipping box is set.
  52. /// </para></summary>
  53. Clip = 0x4
  54. }
  55. }