Lines Matching refs:testConfig
410 ExternalDependencyTestInstance (Context& context, ExternalTestConfig testConfig);
497 …dencyTestInstance::ExternalDependencyTestInstance (Context& context, ExternalTestConfig testConfig) in ExternalDependencyTestInstance() argument
499 …, m_renderPass2Supported ((testConfig.renderPassType == RENDERPASS_TYPE_RENDERPASS2) && context.r… in ExternalDependencyTestInstance()
500 …, m_synchronization2Supported ((testConfig.synchronizationType == SYNCHRONIZATION_TYPE_SYNCHRONIZA… in ExternalDependencyTestInstance()
501 , m_renderPassType (testConfig.renderPassType) in ExternalDependencyTestInstance()
502 , m_width (testConfig.imageSize.x()) in ExternalDependencyTestInstance()
503 , m_height (testConfig.imageSize.y()) in ExternalDependencyTestInstance()
504 , m_blurKernel (testConfig.blurKernel) in ExternalDependencyTestInstance()
505 , m_format (testConfig.format) in ExternalDependencyTestInstance()
506 …ies, context.getUniversalQueueFamilyIndex(), m_format, m_width, m_height, testConfig.renderPasses)) in ExternalDependencyTestInstance()
508 …, m_samplers (createSamplers(context.getDeviceInterface(), context.getDevice(), testConfig.ren… in ExternalDependencyTestInstance()
511 …t.getDeviceInterface(), context.getDevice(), testConfig.renderPasses, testConfig.renderPassType, t… in ExternalDependencyTestInstance()
1011 SubpassTestConfig testConfig);
1096 …endencyTestInstance::SubpassDependencyTestInstance (Context& context, SubpassTestConfig testConfig) in SubpassDependencyTestInstance() argument
1098 …, m_extensionSupported ((testConfig.renderPassType == RENDERPASS_TYPE_RENDERPASS2) && context.re… in SubpassDependencyTestInstance()
1099 , m_renderPassInfo (testConfig.renderPass) in SubpassDependencyTestInstance()
1100 , m_renderPassType (testConfig.renderPassType) in SubpassDependencyTestInstance()
1101 , m_width (testConfig.imageSize.x()) in SubpassDependencyTestInstance()
1102 , m_height (testConfig.imageSize.y()) in SubpassDependencyTestInstance()
1103 , m_format (testConfig.format) in SubpassDependencyTestInstance()
1110 …ss(context.getDeviceInterface(), context.getDevice(), m_renderPassInfo, testConfig.renderPassType)) in SubpassDependencyTestInstance()
1828 SubpassSelfDependencyBackwardsTestConfig testConfig);
1848 …ndencyBackwardsTestInstance (Context& context, SubpassSelfDependencyBackwardsTestConfig testConfig) in SubpassSelfDependencyBackwardsTestInstance() argument
1850 …, m_extensionSupported ((testConfig.renderPassType == RENDERPASS_TYPE_RENDERPASS2) && context.requ… in SubpassSelfDependencyBackwardsTestInstance()
1852 , m_renderPassType (testConfig.renderPassType) in SubpassSelfDependencyBackwardsTestInstance()
1853 , m_width (testConfig.imageSize.x()) in SubpassSelfDependencyBackwardsTestInstance()
1854 , m_height (testConfig.imageSize.y()) in SubpassSelfDependencyBackwardsTestInstance()
1855 , m_format (testConfig.format) in SubpassSelfDependencyBackwardsTestInstance()
2288 SeparateChannelsTestConfig testConfig);
2307 …estInstance::SeparateChannelsTestInstance (Context& context, SeparateChannelsTestConfig testConfig) in SeparateChannelsTestInstance() argument
2309 …, m_extensionSupported ((testConfig.renderPassType == RENDERPASS_TYPE_RENDERPASS2) && context.requ… in SeparateChannelsTestInstance()
2310 , m_renderPassType (testConfig.renderPassType) in SeparateChannelsTestInstance()
2313 , m_format (testConfig.format) in SeparateChannelsTestInstance()
2865 SingleAttachmentTestConfig testConfig);
2884 …estInstance::SingleAttachmentTestInstance (Context& context, SingleAttachmentTestConfig testConfig) in SingleAttachmentTestInstance() argument
2886 …, m_extensionSupported ((testConfig.renderPassType == RENDERPASS_TYPE_RENDERPASS2) && context.requ… in SingleAttachmentTestInstance()
2887 , m_renderPassType (testConfig.renderPassType) in SingleAttachmentTestInstance()
2890 , m_format (testConfig.format) in SingleAttachmentTestInstance()
3568 void init (vk::SourceCollections& dst, ExternalTestConfig testConfig) const in init()
3570 for (size_t renderPassNdx = 0; renderPassNdx < testConfig.renderPasses.size(); renderPassNdx++) in init()
3594 …gl_FragCoord.x <= " + de::toString(testConfig.imageSize.x() / 2) + " && gl_FragCoord.y <= " + de::… in init()
3596 …(gl_FragCoord.x > " + de::toString(testConfig.imageSize.x() / 2) + " && gl_FragCoord.y <= " + de::… in init()
3598 …(gl_FragCoord.x <= " + de::toString(testConfig.imageSize.x() / 2) + " && gl_FragCoord.y > " + de::… in init()
3617 … vec2 step = vec2(1.0 / " + de::toString(testConfig.imageSize.x()) + ", 1.0 / " + de::toString(… in init()
3621 …" for(int sampleNdx = 0; sampleNdx < " + de::toString(testConfig.blurKernel + 1) + "; sampleNdx… in init()
3623 …" vec2 sampleCoord = vec2((vtxTexCoords.x - " + de::toString(testConfig.blurKernel / 2) + "… in init()
3639 … vec2 step = vec2(1.0 / " + de::toString(testConfig.imageSize.x()) + ", 1.0 / " + de::toString(… in init()
3643 …" for(int sampleNdx = 0; sampleNdx < " + de::toString(testConfig.blurKernel + 1) + "; sampleNdx… in init()
3645 … sampleCoord = vec2(vtxTexCoords.x, (vtxTexCoords.y - " + de::toString(testConfig.blurKernel / 2) … in init()
3659 void init (vk::SourceCollections& dst, SubpassTestConfig testConfig) const in init()
3661 size_t subpassCount = testConfig.renderPass.getSubpasses().size(); in init()
3690 if (isDepthStencilFormat(testConfig.format)) in init()
3723 void init (vk::SourceCollections& dst, SubpassSelfDependencyBackwardsTestConfig testConfig) const in init()
3725 DE_UNREF(testConfig); in init()
3788 void init (vk::SourceCollections& dst, SeparateChannelsTestConfig testConfig) const in init()
3798 if (isDepthStencilFormat(testConfig.format)) in init()
3825 void init (vk::SourceCollections& dst, SingleAttachmentTestConfig testConfig) const in init()
3827 DE_UNREF(testConfig); in init()
3950 ExternalTestConfig testConfig in initTests() local
3960 …alPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, testName.c_str(), testName.c_str(), testConfig)); in initTests()
3964 testConfig.synchronizationType = SYNCHRONIZATION_TYPE_SYNCHRONIZATION2; in initTests()
3965 …alPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, testName.c_str(), testName.c_str(), testConfig)); in initTests()
4028 …const ExternalTestConfig testConfig (VK_FORMAT_R8G8B8A8_UNORM, UVec2(128, 128), renderPasses, rend… in initTests() local
4031 …alPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, testName.c_str(), testName.c_str(), testConfig)); in initTests()
4133 …const SubpassTestConfig testConfig (formats[formatNdx], renderSizes[renderSizeNdx], renderPass, re… in initTests() local
4136 …assTestConfig, SubpassPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, format, format, testConfig)); in initTests()
4164 …const SubpassSelfDependencyBackwardsTestConfig testConfig (VK_FORMAT_R8G8B8A8_UNORM, renderSizes[r… in initTests() local
4165 …kwardsPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, "geometry_to_indirectdraw", "", testConfig)); in initTests()
4191 const SeparateChannelsTestConfig testConfig(configs[configIdx].format, renderPassType); in initTests() local
4193 …eChannelsPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, configs[configIdx].name, "", testConfig)); in initTests()
4218 const SingleAttachmentTestConfig testConfig(configs[configIdx].format, renderPassType); in initTests() local
4220 …ttachmentPrograms>(testCtx, tcu::NODETYPE_SELF_VALIDATE, configs[configIdx].name, "", testConfig)); in initTests()