diff options
author | Jason Ekstrand <[email protected]> | 2015-07-14 15:04:11 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-07-14 15:04:11 -0700 |
commit | a463eacb8f811ba8c820fcd53ae82f22ac0a3eff (patch) | |
tree | ee80ebcda79d3df158a19b3f726c6a93fb6a9136 /include/vulkan/vulkan.h | |
parent | 98957b18d22a2d8bf4a2ec1b7ccbf2e8d7c2d8ab (diff) |
vk/vulkan.h: Change maxAnisotropy to a float
Diffstat (limited to 'include/vulkan/vulkan.h')
-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 6f6f4b856c1..60afdf6fa6b 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1209,7 +1209,7 @@ typedef struct { uint32_t maxDrawIndirectInstanceCount; VkBool32 primitiveRestartForPatches; float maxSamplerLodBias; - uint32_t maxSamplerAnisotropy; + float maxSamplerAnisotropy; uint32_t maxViewports; uint32_t maxDynamicViewportStates; uint32_t maxViewportDimensions[2]; @@ -1649,7 +1649,7 @@ typedef struct { VkTexAddress addressV; VkTexAddress addressW; float mipLodBias; - uint32_t maxAnisotropy; + float maxAnisotropy; VkBool32 compareEnable; VkCompareOp compareOp; float minLod; |