示例#1
0
        public void Reset(CommandBufferResetFlags flags = (CommandBufferResetFlags)0)
        {
            Result result;

            unsafe {
                result = Interop.NativeMethods.vkResetCommandBuffer(this.m, flags);
                if (result != Result.Success)
                {
                    throw new ResultException(result);
                }
            }
        }
 public static extern Result vkResetCommandBuffer(IntPtr commandBuffer, CommandBufferResetFlags flags);
示例#3
0
 internal static unsafe extern Result vkResetCommandBuffer(CommandBuffer commandBuffer, CommandBufferResetFlags flags);
示例#4
0
 internal static unsafe extern Result vkResetCommandBuffer(CommandBuffer commandBuffer, CommandBufferResetFlags flags);
示例#5
0
 public unsafe void Reset(CommandBufferResetFlags flags)
 {
     vkResetCommandBuffer(this, flags).CheckError();
 }