From 41866db908985f0fc389e5cd7924afa4fd61aa93 Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Tue, 1 Sep 2015 17:30:39 -0600 Subject: Bug 14522: Remove VkAttachmentView https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14522 Several parts of the driver really want an attachment view so I've included the attachment information in the intel_img_view structure and initialize both when the view is created. Parts of the meta path only need intel_att_view and I kept that in place. --- vulkan.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'vulkan.py') diff --git a/vulkan.py b/vulkan.py index bbae148e..05e09200 100755 --- a/vulkan.py +++ b/vulkan.py @@ -198,7 +198,6 @@ core = Extension( "VkQueryPool", "VkBufferView", "VkImageView", - "VkAttachmentView", "VkShaderModule", "VkShader", "VkPipelineCache", @@ -533,15 +532,6 @@ core = Extension( [Param("VkDevice", "device"), Param("VkImageView", "imageView")]), - Proto("VkResult", "CreateAttachmentView", - [Param("VkDevice", "device"), - Param("const VkAttachmentViewCreateInfo*", "pCreateInfo"), - Param("VkAttachmentView*", "pView")]), - - Proto("VkResult", "DestroyAttachmentView", - [Param("VkDevice", "device"), - Param("VkAttachmentView", "attachmentView")]), - Proto("VkResult", "CreateShaderModule", [Param("VkDevice", "device"), Param("const VkShaderModuleCreateInfo*", "pCreateInfo"), @@ -1184,7 +1174,6 @@ object_non_dispatch_list = [ "VkQueryPool", "VkBufferView", "VkImageView", - "VkAttachmentView", "VkShaderModule", "VkShader", "VkPipelineCache", -- cgit v1.2.3