Example #1
0
 public void FreeCommandBuffers(
     [FromProperty("Device")] GenDevice device,
     [FromProperty("this")] GenCommandPool commandPool,
     [CountFor("commandBuffers")] int commandBufferCount,
     [IsArray] GenCommandBuffer *pCommandBuffers)
 {
 }
Example #2
0
 public void CmdExecuteCommands(
     [FromProperty("this")] GenCommandBuffer commandBuffer,
     [CountFor("commandBuffers")] int commandBufferCount,
     [IsArray] GenCommandBuffer *pCommandBuffers)
 {
 }
Example #3
0
 public VkResult AllocateCommandBuffers(
     [FromProperty("this")] GenDevice device,
     GenCommandBufferAllocateInfo *pAllocateInfo,
     [Return, IsArray, ReturnCount("allocateInfo.CommandBufferCount")] GenCommandBuffer *pCommandBuffers)
 => default(VkResult);