diff options
author | Jason Ekstrand <[email protected]> | 2015-11-30 17:26:32 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-12-03 13:43:52 -0800 |
commit | 5f348bd0e59e545d10dc1cab8495ddc0d3e72fea (patch) | |
tree | 8de304ee47c5169ff45f6d7b5a9f4d296acb0a70 /include/vulkan | |
parent | 9fa6e328ebac4616148a23a7a4fbe7ed25ec315f (diff) |
vk/0.210.0: Rename origin fields of VkViewport
Diffstat (limited to 'include/vulkan')
-rw-r--r-- | include/vulkan/vulkan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 34470999bbf..49241de1863 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1646,8 +1646,8 @@ typedef struct VkPipelineTessellationStateCreateInfo { } VkPipelineTessellationStateCreateInfo; typedef struct VkViewport { - float originX; - float originY; + float x; + float y; float width; float height; float minDepth; |