mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-08-04 12:21:06 +00:00
Fix build issue
This commit is contained in:
parent
c4497b8700
commit
50cd75fe35
|
@ -6,8 +6,11 @@ using System.Runtime.InteropServices;
|
||||||
#if !VALIDATE
|
#if !VALIDATE
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace OpenTK.Graphics.Vulkan
|
namespace OpenTK.Graphics.Vulkan
|
||||||
{
|
{
|
||||||
|
using Debug = System.Diagnostics.Debug;
|
||||||
|
|
||||||
public unsafe class NativeList<T> : IEnumerable<T>, IDisposable where T : struct
|
public unsafe class NativeList<T> : IEnumerable<T>, IDisposable where T : struct
|
||||||
{
|
{
|
||||||
private byte* _dataPtr;
|
private byte* _dataPtr;
|
||||||
|
|
Loading…
Reference in a new issue