FontRenderMode.editor.generated.cs 608 B

123456789101112131415161718192021222324
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. using System.Runtime.InteropServices;
  6. using bs;
  7. namespace bs.Editor
  8. {
  9. /** @addtogroup Text
  10. * @{
  11. */
  12. /// <summary>Determines how is a font rendered into the bitmap texture.</summary>
  13. public enum FontRenderMode
  14. {
  15. Smooth = 0,
  16. Raster = 1,
  17. HintedSmooth = 2,
  18. HintedRaster = 3
  19. }
  20. /** @} */
  21. }