Lines Matching refs:attach_desc
276 VkAttachmentDescription attach_desc = {}; in TEST_F() local
277 attach_desc.format = depth_format; in TEST_F()
278 attach_desc.samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
279 attach_desc.storeOp = VK_ATTACHMENT_STORE_OP_STORE; in TEST_F()
280 attach_desc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in TEST_F()
281 attach_desc.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in TEST_F()
282 attach_desc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in TEST_F()
283 attach_desc.initialLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL; in TEST_F()
284 attach_desc.finalLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL; in TEST_F()
288 rpci.pAttachments = &attach_desc; in TEST_F()
5026 VkAttachmentDescription attach_desc[2] = {}; in TEST_F() local
5027 attach_desc[0].format = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
5028 attach_desc[0].samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
5029 attach_desc[0].initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
5030 attach_desc[0].finalLayout = VK_IMAGE_LAYOUT_GENERAL; in TEST_F()
5031 attach_desc[0].loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in TEST_F()
5032 attach_desc[1].format = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
5033 attach_desc[1].samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
5034 attach_desc[1].initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
5035 attach_desc[1].finalLayout = VK_IMAGE_LAYOUT_GENERAL; in TEST_F()
5036 attach_desc[1].loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in TEST_F()
5038 rpci.pAttachments = attach_desc; in TEST_F()