Lines Matching refs:format
157 VK_FORMAT_R32G32B32A32_SFLOAT, // VkFormat format;
194 VK_FORMAT_R8G8B8A8_UNORM, // VkFormat format;
220 m_bufferFormat, // VkFormat format;
590 VkFormat format = depthFormats[i];
592 if (format == VK_FORMAT_D24_UNORM_S8_UINT)
594 if (format == VK_FORMAT_X8_D24_UNORM_PACK32)
596 if (format == VK_FORMAT_D32_SFLOAT)
599 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_kill_write" + postfix, BufferType::DEPTH, DiscardType::KILL, MutationMode::WRITE, format));
600 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_kill_initialize" + postfix, BufferType::DEPTH, DiscardType::KILL, MutationMode::INITIALIZE, format));
601 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_kill_write_initialize" + postfix, BufferType::DEPTH, DiscardType::KILL, MutationMode::INITIALIZE_WRITE, format));
602 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_terminate_write" + postfix, BufferType::DEPTH, DiscardType::TERMINATE, MutationMode::WRITE, format));
603 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_terminate_initialize" + postfix, BufferType::DEPTH, DiscardType::TERMINATE, MutationMode::INITIALIZE, format));
604 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_terminate_write_initialize" + postfix, BufferType::DEPTH, DiscardType::TERMINATE, MutationMode::INITIALIZE_WRITE, format));
605 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_demote_write" + postfix, BufferType::DEPTH, DiscardType::DEMOTE, MutationMode::WRITE, format));
606 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_demote_initialize" + postfix, BufferType::DEPTH, DiscardType::DEMOTE, MutationMode::INITIALIZE, format));
607 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "depth_demote_write_initialize" + postfix, BufferType::DEPTH, DiscardType::DEMOTE, MutationMode::INITIALIZE_WRITE, format));
612 VkFormat format = stencilFormats[i];
614 if (format == VK_FORMAT_D24_UNORM_S8_UINT)
617 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_kill_write" + postfix, BufferType::STENCIL, DiscardType::KILL, MutationMode::WRITE, format));
618 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_kill_initialize" + postfix, BufferType::STENCIL, DiscardType::KILL, MutationMode::INITIALIZE, format));
619 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_kill_write_initialize" + postfix, BufferType::STENCIL, DiscardType::KILL, MutationMode::INITIALIZE_WRITE, format));
620 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_terminate_write" + postfix, BufferType::STENCIL, DiscardType::TERMINATE, MutationMode::WRITE, format));
621 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_terminate_initialize" + postfix, BufferType::STENCIL, DiscardType::TERMINATE, MutationMode::INITIALIZE, format));
622 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_terminate_write_initialize" + postfix, BufferType::STENCIL, DiscardType::TERMINATE, MutationMode::INITIALIZE_WRITE, format));
623 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_demote_write" + postfix, BufferType::STENCIL, DiscardType::DEMOTE, MutationMode::WRITE, format));
624 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_demote_initialize" + postfix, BufferType::STENCIL, DiscardType::DEMOTE, MutationMode::INITIALIZE, format));
625 testGroup->addChild(new DepthStencilWriteConditionsTest(testCtx, "stencil_demote_write_initialize" + postfix, BufferType::STENCIL, DiscardType::DEMOTE, MutationMode::INITIALIZE_WRITE, format));