Lines Matching refs:vp_state_ci
4549 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
4550 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
4551 vp_state_ci.viewportCount = 1; in TEST_F()
4553 vp_state_ci.pViewports = &vp; in TEST_F()
4554 vp_state_ci.scissorCount = 1; in TEST_F()
4556 vp_state_ci.pScissors = &scissors; in TEST_F()
4594 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
6597 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
6598 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
6599 vp_state_ci.scissorCount = 1; in TEST_F()
6600 vp_state_ci.pScissors = ≻ in TEST_F()
6601 vp_state_ci.viewportCount = 1; in TEST_F()
6602 vp_state_ci.pViewports = &vp; in TEST_F()
6615 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
6839 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
6840 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
6841 vp_state_ci.scissorCount = 0; in TEST_F()
6842 vp_state_ci.viewportCount = 1; // Count mismatch should cause error in TEST_F()
6843 vp_state_ci.pViewports = &vp; in TEST_F()
6867 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
7068 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
7069 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
7070 vp_state_ci.viewportCount = 1; in TEST_F()
7071 vp_state_ci.pViewports = NULL; // Null vp w/ count of 1 should cause error in TEST_F()
7072 vp_state_ci.scissorCount = 1; in TEST_F()
7073 vp_state_ci.pScissors = NULL; // Scissor is dynamic (below) so this won't cause error in TEST_F()
7123 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
7149 vp_state_ci.pViewports = &vp; in TEST_F()
7231 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
7232 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
7233 vp_state_ci.scissorCount = 1; in TEST_F()
7234 vp_state_ci.pScissors = NULL; // Null scissor w/ count of 1 should cause error in TEST_F()
7235 vp_state_ci.viewportCount = 1; in TEST_F()
7236 vp_state_ci.pViewports = NULL; // vp is dynamic (below) so this won't cause error in TEST_F()
7286 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
7312 vp_state_ci.pScissors = ≻ in TEST_F()
7386 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
7387 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
7388 vp_state_ci.scissorCount = 1; in TEST_F()
7389 vp_state_ci.pScissors = NULL; in TEST_F()
7390 vp_state_ci.viewportCount = 1; in TEST_F()
7391 vp_state_ci.pViewports = NULL; in TEST_F()
7445 gp_ci.pViewportState = &vp_state_ci; in TEST_F()
11207 VkPipelineViewportStateCreateInfo vp_state_ci = {}; in TEST_F() local
11208 vp_state_ci.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO; in TEST_F()
11209 vp_state_ci.viewportCount = 1; in TEST_F()
11211 vp_state_ci.pViewports = &vp; in TEST_F()
11212 vp_state_ci.scissorCount = 1; in TEST_F()
11214 vp_state_ci.pScissors = &scissors; in TEST_F()
11257 gp_ci.pViewportState = &vp_state_ci; in TEST_F()