aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/vkLayer.h1
-rw-r--r--include/vulkan.h4
2 files changed, 1 insertions, 4 deletions
diff --git a/include/vkLayer.h b/include/vkLayer.h
index e456a9cb..154472c1 100644
--- a/include/vkLayer.h
+++ b/include/vkLayer.h
@@ -141,7 +141,6 @@ typedef struct VkLayerInstanceDispatchTable_
PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
PFN_vkCreateInstance CreateInstance;
PFN_vkDestroyInstance DestroyInstance;
- PFN_vkCreateDevice CreateDevice;
PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
PFN_vkGetPhysicalDeviceFormatInfo GetPhysicalDeviceFormatInfo;
diff --git a/include/vulkan.h b/include/vulkan.h
index bf721bda..874caf42 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1593,9 +1593,7 @@ typedef struct VkShaderCreateInfo_
VkStructureType sType; // Must be VK_STRUCTURE_TYPE_SHADER_CREATE_INFO
const void* pNext; // Pointer to next structure
VkShaderModule module; // Module containing entry point
- const char* name; // Null-terminate entry point name
- size_t codeSize; // Specified in bytes
- const void* pCode;
+ const char* pName; // Null-terminate entry point name
VkShaderCreateFlags flags; // Reserved
} VkShaderCreateInfo;