diff options
author | Jason Ekstrand <[email protected]> | 2015-11-30 18:05:00 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-12-03 13:43:52 -0800 |
commit | 7f2284063df569df40f68074833f1518005d348d (patch) | |
tree | 6a5f6434d4d04f2307bebeac8e2f44daebf25750 /src/vulkan/anv_meta_clear.c | |
parent | 1ab9f843bc40c54daeb94676131e8323d4f2359f (diff) |
vk/0.210.0: s/raster/rasterization/
Diffstat (limited to 'src/vulkan/anv_meta_clear.c')
-rw-r--r-- | src/vulkan/anv_meta_clear.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vulkan/anv_meta_clear.c b/src/vulkan/anv_meta_clear.c index 99004fd64ca..010323180e8 100644 --- a/src/vulkan/anv_meta_clear.c +++ b/src/vulkan/anv_meta_clear.c @@ -173,8 +173,8 @@ create_pipeline(struct anv_device *device, .scissorCount = 1, .pScissors = NULL, /* dynamic */ }, - .pRasterState = &(VkPipelineRasterStateCreateInfo) { - .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTER_STATE_CREATE_INFO, + .pRasterizationState = &(VkPipelineRasterizationStateCreateInfo) { + .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO, .depthClipEnable = false, .rasterizerDiscardEnable = false, .polygonMode = VK_POLYGON_MODE_FILL, @@ -185,7 +185,7 @@ create_pipeline(struct anv_device *device, }, .pMultisampleState = &(VkPipelineMultisampleStateCreateInfo) { .sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO, - .rasterSamples = 1, /* FINISHME: Multisampling */ + .rasterizationSamples = 1, /* FINISHME: Multisampling */ .sampleShadingEnable = false, .pSampleMask = (VkSampleMask[]) { UINT32_MAX }, .alphaToCoverageEnable = false, |