ShadowQuality.cs 542 B

123456789101112131415161718192021222324252627282930313233
  1. // WARNING - AUTOGENERATED - DO NOT EDIT
  2. //
  3. // Generated using `sharpie urho`
  4. //
  5. // ShadowQuality.cs
  6. //
  7. // Copyright 2015 Xamarin Inc. All rights reserved.
  8. using System;
  9. using System.Runtime.InteropServices;
  10. using System.Collections.Generic;
  11. using Urho.Urho2D;
  12. using Urho.Gui;
  13. using Urho.Resources;
  14. using Urho.IO;
  15. using Urho.Navigation;
  16. using Urho.Network;
  17. namespace Urho
  18. {
  19. /// <summary>
  20. /// Shadow type.
  21. /// </summary>
  22. public enum ShadowQuality
  23. {
  24. SimpleN16Bit = 0,
  25. SimpleN24Bit,
  26. PcfN16Bit,
  27. PcfN24Bit,
  28. Vsm,
  29. BlurVsm
  30. }
  31. }