Lines Matching refs:depthClipEnableConfig
1999 DepthClipEnableConfig depthClipEnableConfig;
2111 , depthClipEnableConfig (tcu::Nothing)
2223 , depthClipEnableConfig (other.depthClipEnableConfig)
2318 return (static_cast<bool>(depthClipEnableConfig.staticValue)
2319 || (static_cast<bool>(depthClipEnableConfig.dynamicValue) && static_cast<bool>(depthClipEnableConfig.dynamicValue.get())));
2396 const bool staticValue = (static_cast<bool>(depthClipEnableConfig.staticValue) ? depthClipEnableConfig.staticValue.get() : true);
2397 const bool hasDynamicValue = (static_cast<bool>(depthClipEnableConfig.dynamicValue) && static_cast<bool>(depthClipEnableConfig.dynamicValue.get()));
2398 const tcu::Maybe<bool> dynamicValue = (hasDynamicValue ? tcu::just(depthClipEnableConfig.dynamicValue->get()) : tcu::nothing<bool>());
2482 depthClipEnableConfig.swapValues();
2630 || (!!depthClipEnableConfig.dynamicValue)
2735 if (depthClipEnableConfig.dynamicValue) dynamicStates.push_back(vk::VK_DYNAMIC_STATE_DEPTH_CLIP_ENABLE_EXT);
3201 if (m_testConfig.depthClipEnableConfig.dynamicValue && !eds3Features.extendedDynamicState3DepthClipEnable)
4158 if (testConfig.depthClipEnableConfig.dynamicValue && static_cast<bool>(testConfig.depthClipEnableConfig.dynamicValue.get()))
4159 vkd.cmdSetDepthClipEnableEXT(cmdBuffer, makeVkBool32(testConfig.depthClipEnableConfig.dynamicValue->get()));
5203 const bool staticDepthClipEnableInfo = static_cast<bool>(m_testConfig.depthClipEnableConfig.staticValue);
5236 pDepthClipEnableInfo->depthClipEnable = makeVkBool32(m_testConfig.depthClipEnableConfig.staticValue.get());
7534 config.depthClipEnableConfig.staticValue = OptBoolean(true);
7554 config.depthClipEnableConfig.staticValue = OptBoolean(true);
7911 config.depthClipEnableConfig.staticValue = depthClipEnableCase.staticVal;
7912 config.depthClipEnableConfig.dynamicValue = depthClipEnableCase.dynamicVal;