2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
26 lines
571 B
C#
26 lines
571 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
readonly struct DisposablePipeline : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public Pipeline Value { get; }
|
|
|
|
public DisposablePipeline(Vk api, Device device, Pipeline pipeline)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = pipeline;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_api.DestroyPipeline(_device, Value, Span<AllocationCallbacks>.Empty);
|
|
}
|
|
}
|
|
}
|