diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-01 17:30:39 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-02 11:33:56 -0600 |
| commit | 41866db908985f0fc389e5cd7924afa4fd61aa93 (patch) | |
| tree | 9fc04e2b2598c78ee4c30ed94a0678b1cbf07593 /vulkan.py | |
| parent | 4080386f5a53856ee74a05201c46a1b62704a82b (diff) | |
| download | usermoji-41866db908985f0fc389e5cd7924afa4fd61aa93.tar.xz | |
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.
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -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", |
