ResultExtensions.cs 353 B

12345678910111213141516
  1. using System;
  2. using Silk.NET.Vulkan;
  3. namespace Ryujinx.Ava.Ui.Vulkan
  4. {
  5. public static class ResultExtensions
  6. {
  7. public static void ThrowOnError(this Result result)
  8. {
  9. if (result != Result.Success)
  10. {
  11. throw new Exception($"Unexpected API error \"{result}\".");
  12. }
  13. }
  14. }
  15. }