aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs')
-rw-r--r--Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs b/Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs
deleted file mode 100644
index 0027753c..00000000
--- a/Ryujinx.Ava/Ui/Backend/Vulkan/VulkanOptions.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace Ryujinx.Ava.Ui.Vulkan
-{
- public class VulkanOptions
- {
- /// <summary>
- /// Sets the application name of the Vulkan instance
- /// </summary>
- public string ApplicationName { get; set; }
-
- /// <summary>
- /// Specifies additional extensions to enable if available on the instance
- /// </summary>
- public IEnumerable<string> InstanceExtensions { get; set; } = Enumerable.Empty<string>();
-
- /// <summary>
- /// Specifies layers to enable if available on the instance
- /// </summary>
- public IEnumerable<string> EnabledLayers { get; set; } = Enumerable.Empty<string>();
-
- /// <summary>
- /// Enables the debug layer
- /// </summary>
- public bool UseDebug { get; set; }
-
- /// <summary>
- /// Selects the first suitable discrete GPU available
- /// </summary>
- public bool PreferDiscreteGpu { get; set; }
-
- /// <summary>
- /// Sets the device to use if available and suitable.
- /// </summary>
- public string PreferredDevice { get; set; }
-
- /// <summary>
- /// Max number of device queues to request
- /// </summary>
- public uint MaxQueueCount { get; set; }
- }
-}