aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-10-15 17:59:39 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-10-23 17:31:14 -0600
commite0efa466664e3cbc8ee5859d30c26188a4babd96 (patch)
treea6822f3d05ca5b4e70e779811faf862706829f95 /include
parent95ee35e3486a50f790d495614cf999a69701e90f (diff)
downloadusermoji-e0efa466664e3cbc8ee5859d30c26188a4babd96.tar.xz
bug-14737: Move alphaToCoverageEnable to MultisampleStateCreateInfo
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index b154853a..a38b848d 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -41,7 +41,7 @@ extern "C" {
((major << 22) | (minor << 12) | patch)
// Vulkan API version supported by this file
-#define VK_API_VERSION VK_MAKE_VERSION(0, 174, 0)
+#define VK_API_VERSION VK_MAKE_VERSION(0, 175, 0)
#if defined(__cplusplus) && (_MSC_VER >= 1800 || __cplusplus >= 201103L)
@@ -1680,6 +1680,8 @@ typedef struct {
VkBool32 sampleShadingEnable;
float minSampleShading;
const VkSampleMask* pSampleMask;
+ VkBool32 alphaToCoverageEnable;
+ VkBool32 alphaToOneEnable;
} VkPipelineMultisampleStateCreateInfo;
typedef struct {
@@ -1720,8 +1722,6 @@ typedef struct {
typedef struct {
VkStructureType sType;
const void* pNext;
- VkBool32 alphaToCoverageEnable;
- VkBool32 alphaToOneEnable;
VkBool32 logicOpEnable;
VkLogicOp logicOp;
uint32_t attachmentCount;