mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-18 17:13:47 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
using Ryujinx.Graphics.GAL;
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Graphics.Metal
|
|
{
|
|
static class Handle
|
|
{
|
|
public static IntPtr ToIntPtr(this BufferHandle handle)
|
|
{
|
|
return Unsafe.As<BufferHandle, IntPtr>(ref handle);
|
|
}
|
|
}
|
|
}
|