Home
last modified time | relevance | path

Searched refs:attach_desc (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvklayertests_descriptor_renderpass_framebuffer.cpp1693 VkAttachmentDescription attach_desc = {}; in TEST_F() local
1694 attach_desc.format = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F()
1695 attach_desc.samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
1696 attach_desc.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in TEST_F()
1697 attach_desc.storeOp = VK_ATTACHMENT_STORE_OP_STORE; in TEST_F()
1698 attach_desc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in TEST_F()
1699 attach_desc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in TEST_F()
1700 attach_desc.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
1701 attach_desc.finalLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
1712 rpci.pAttachments = &attach_desc; in TEST_F()
[all …]
Dvkpositivelayertests.cpp276 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()
[all …]
Dvkrenderframework.cpp978 VkAttachmentDescription attach_desc = {}; in VkRenderpassObj() local
979 attach_desc.format = VK_FORMAT_B8G8R8A8_UNORM; in VkRenderpassObj()
980 attach_desc.samples = VK_SAMPLE_COUNT_1_BIT; in VkRenderpassObj()
981 attach_desc.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in VkRenderpassObj()
982 attach_desc.finalLayout = VK_IMAGE_LAYOUT_GENERAL; in VkRenderpassObj()
984 rpci.pAttachments = &attach_desc; in VkRenderpassObj()
Dvklayertests_pipeline_shader.cpp223 VkAttachmentDescription attach_desc[2] = {}; in TEST_F() local
224 attach_desc[0].format = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
225 attach_desc[0].samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
226 attach_desc[0].initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
227 attach_desc[0].finalLayout = VK_IMAGE_LAYOUT_GENERAL; in TEST_F()
228 attach_desc[1].format = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
229 attach_desc[1].samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
230 attach_desc[1].initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; in TEST_F()
231 attach_desc[1].finalLayout = VK_IMAGE_LAYOUT_GENERAL; in TEST_F()
233 rpci.pAttachments = attach_desc; in TEST_F()
Dvklayertests_buffer_image_memory_sampler.cpp4804 VkAttachmentDescription attach_desc = {}; in TEST_F() local
4805 attach_desc.format = VK_FORMAT_UNDEFINED; in TEST_F()
4806 attach_desc.samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
4807 attach_desc.finalLayout = VK_IMAGE_LAYOUT_GENERAL; in TEST_F()
4808 rpci.pAttachments = &attach_desc; in TEST_F()
4857 attach_desc.format = depth_format; in TEST_F()
4858 attach_desc.samples = VK_SAMPLE_COUNT_1_BIT; in TEST_F()
4859 attach_desc.storeOp = VK_ATTACHMENT_STORE_OP_STORE; in TEST_F()
4860 attach_desc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in TEST_F()
4861 attach_desc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in TEST_F()
[all …]