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 /loader/table_ops.h | |
| 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 'loader/table_ops.h')
| -rw-r--r-- | loader/table_ops.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/loader/table_ops.h b/loader/table_ops.h index 49f01e42..4064178f 100644 --- a/loader/table_ops.h +++ b/loader/table_ops.h @@ -84,8 +84,6 @@ static inline void loader_init_device_dispatch_table(VkLayerDispatchTable *table table->GetImageSubresourceLayout = (PFN_vkGetImageSubresourceLayout) gpa(dev, "vkGetImageSubresourceLayout"); table->CreateImageView = (PFN_vkCreateImageView) gpa(dev, "vkCreateImageView"); table->DestroyImageView = (PFN_vkDestroyImageView) gpa(dev, "vkDestroyImageView"); - table->CreateAttachmentView = (PFN_vkCreateAttachmentView) gpa(dev, "vkCreateAttachmentView"); - table->DestroyAttachmentView = (PFN_vkDestroyAttachmentView) gpa(dev, "vkDestroyAttachmentView"); table->CreateShaderModule = (PFN_vkCreateShaderModule) gpa(dev, "vkCreateShaderModule"); table->DestroyShaderModule = (PFN_vkDestroyShaderModule) gpa(dev, "vkDestroyShaderModule"); table->CreateShader = (PFN_vkCreateShader) gpa(dev, "vkCreateShader"); @@ -294,10 +292,6 @@ static inline void *loader_lookup_device_dispatch_table( return (void *) table->CreateImageView; if (!strcmp(name, "DestroyImageView")) return (void *) table->DestroyImageView; - if (!strcmp(name, "CreateAttachmentView")) - return (void *) table->CreateAttachmentView; - if (!strcmp(name, "DestroyAttachmentView")) - return (void *) table->DestroyAttachmentView; if (!strcmp(name, "CreateShaderModule")) return (void *) table->CreateShaderModule; if (!strcmp(name, "DestroyShaderModule")) |
