Home | History | Annotate | Download | only in layers

Lines Matching refs:pRasterizationState

2808         if (pCreateInfos->pRasterizationState != nullptr) {
2809 if (pCreateInfos->pRasterizationState->cullMode & ~VK_CULL_MODE_FRONT_AND_BACK) {
2812 "vkCreateGraphicsPipelines parameter, VkCullMode pCreateInfos->pRasterizationState->cullMode, is an "
2817 if ((pCreateInfos->pRasterizationState->polygonMode != VK_POLYGON_MODE_FILL) &&
2822 "vkCreateGraphicsPipelines parameter, VkPolygonMode pCreateInfos->pRasterizationState->polygonMode cannot be "
2899 // If the rasterizerDiscardEnable member of pRasterizationState is VK_FALSE, pViewportState must be a pointer to a
2901 if ((pCreateInfos[i].pRasterizationState != nullptr) &&
2902 (pCreateInfos[i].pRasterizationState->rasterizerDiscardEnable == VK_FALSE)) {
2906 "vkCreateGraphicsPipelines: if pCreateInfos[%d].pRasterizationState->rasterizerDiscardEnable is VK_FALSE, "
2988 // If the rasterizerDiscardEnable member of pRasterizationState is VK_FALSE, pMultisampleState must be a pointer to
2990 if ((pCreateInfos[i].pRasterizationState != nullptr) &&
2991 pCreateInfos[i].pRasterizationState->rasterizerDiscardEnable == VK_FALSE) {
2995 "pCreateInfos[%d].pRasterizationState->rasterizerDiscardEnable is "