MTLCommandBufferHandler.cs 233 B

12345678
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Veldrid.MetalBindings
  4. {
  5. [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
  6. public delegate void MTLCommandBufferHandler(IntPtr block, MTLCommandBuffer buffer);
  7. }