return VK_SUCCESS;
}
+VkResult anv_DestroyRenderPass(
+ VkDevice _device,
+ VkRenderPass renderPass)
+{
+ ANV_FROM_HANDLE(anv_device, device, _device);
+
+ anv_device_free(device, anv_render_pass_from_handle(renderPass));
+
+ return VK_SUCCESS;
+}
+
VkResult anv_GetRenderAreaGranularity(
VkDevice device,
VkRenderPass renderPass,
VkResult anv_DestroyColorAttachmentView(VkDevice device,
VkColorAttachmentView view);
VkResult anv_DestroyDepthStencilView(VkDevice device, VkDepthStencilView view);
+VkResult anv_DestroyRenderPass(VkDevice device, VkRenderPass renderPass);
#define ANV_DEFINE_CASTS(__anv_type, __VkType) \
static inline struct __anv_type * \