diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-28 13:01:17 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-07-01 21:08:13 -0600 |
| commit | 0a35dcdff977a6665e1ea0d38ab11a4fa4a46cfd (patch) | |
| tree | 8db19045b34e06af1a7692dd32ede8ff4c6bcb65 /include/vulkan.h | |
| parent | a80a1a97b8f26dd035fabb2c6762447c71b73ba7 (diff) | |
| download | usermoji-0a35dcdff977a6665e1ea0d38ab11a4fa4a46cfd.tar.xz | |
bug 14014: Fill out support for VkShaderModule
Updated tests and demos to properly use VkShaderModule.
Add support to shader_checker for shader module.
Doesn't do anything with the pName parameter.
Diffstat (limited to 'include/vulkan.h')
| -rw-r--r-- | include/vulkan.h | 4 |
1 files changed, 1 insertions, 3 deletions
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; |
