VulkanExtensions.cs 268 B

123456789101112
  1. using System;
  2. using Silk.NET.Vulkan;
  3. namespace SilkNetDemo;
  4. public static class VulkanExtensions
  5. {
  6. public static void ThrowOnError(this Result result)
  7. {
  8. if (result != Result.Success) throw new Exception($"Unexpected API error \"{result}\".");
  9. }
  10. }