Lines Matching defs:param

97 const std::string generateTestName (struct DepthRangeUnrestrictedParam param)
101 result << getFormatCaseName(param.depthFormat).c_str();
102 result << "_" << getCompareOpStringName(param.depthCompareOp).c_str();
103 result << "_clear_value_" << (int) param.depthBufferClearValue.depthStencil.depth;
105 if (param.depthClampEnable == VK_FALSE)
106 result << "_wc_" << (int) param.wc;
108 if (param.viewportDepthBoundsMode & TEST_MODE_VIEWPORT_DYNAMIC)
110 result << "_viewport_min_" << (int)param.viewportMinDepth << "_max_" << (int)param.viewportMaxDepth;
112 if (param.depthBoundsTestEnable)
114 if (param.viewportDepthBoundsMode & TEST_MODE_DEPTH_BOUNDS_DYNAMIC)
116 result << "_boundstest_min" << (int)param.minDepthBounds << "_max_" << (int)param.maxDepthBounds;
458 const DepthRangeUnrestrictedParam param);
718 const DepthRangeUnrestrictedParam param)
720 , m_param (param)
724 , m_pipeline (m_context.getInstanceInterface(), m_context.getDeviceInterface(), m_context.getPhysicalDevice(), m_context.getDevice(), m_context.getDeviceExtensions(), param.pipelineConstructionType)
730 if (!isSupportedDepthStencilFormat(m_context.getInstanceInterface(), m_context.getPhysicalDevice(), param.depthFormat))
736 if (param.depthClampEnable && features.depthClamp == DE_FALSE)
741 if (param.depthBoundsTestEnable && features.depthBounds == DE_FALSE)
782 if (depthFormatHasStencilComponent(param.depthFormat))
1101 const DepthRangeUnrestrictedParam param);
1117 const DepthRangeUnrestrictedParam param)
1118 : DepthRangeUnrestrictedTestInstance(context, param)
1119 , m_pipelineSecondDraw (m_context.getInstanceInterface(), m_context.getDeviceInterface(), m_context.getPhysicalDevice(), m_context.getDevice(), m_context.getDeviceExtensions(), param.pipelineConstructionType)
1125 m_renderPassSecondDraw = makeRenderPass(vk, vkDevice, param.pipelineConstructionType, m_colorFormat, m_param.depthFormat, VK_ATTACHMENT_LOAD_OP_CLEAR, VK_ATTACHMENT_LOAD_OP_LOAD);
1369 const DepthRangeUnrestrictedParam param)
1371 , m_param (param)