Lines Matching defs:range
570 VK_WHOLE_SIZE // VkDeviceSize range;
1231 const float* range = context.getDeviceProperties().limits.lineWidthRange;
1233 m_context.getTestContext().getLog() << tcu::TestLog::Message << "ALIASED_LINE_WIDTH_RANGE = [" << range[0] << ", " << range[1] << "]" << tcu::TestLog::EndMessage;
1235 DE_ASSERT(range[1] > 1.0f);
1242 if (deFloatFrac(range[1]) == 0.5f)
1244 m_lineWidths.push_back(range[1] - context.getDeviceProperties().limits.lineWidthGranularity);
1248 m_lineWidths.push_back(range[1]);
1253 m_maxLineWidth = range[1];
1696 const float* range = context.getDeviceProperties().limits.pointSizeRange;
1698 m_context.getTestContext().getLog() << tcu::TestLog::Message << "GL_ALIASED_POINT_SIZE_RANGE = [" << range[0] << ", " << range[1] << "]" << tcu::TestLog::EndMessage;
1700 DE_ASSERT(range[1] > 1.0f);
1705 m_pointSizes.push_back(range[1]);
1708 m_maxPointSize = range[1];
6436 const float* range = context.getDeviceProperties().limits.lineWidthRange;
6438 m_context.getTestContext().getLog() << tcu::TestLog::Message << "ALIASED_LINE_WIDTH_RANGE = [" << range[0] << ", " << range[1] << "]" << tcu::TestLog::EndMessage;
6440 DE_ASSERT(range[1] > 1.0f);
6445 m_lineWidths.push_back(range[1]);
6448 m_maxLineWidth = range[1];
7271 msg << "Required point size " << m_config.pointSize << " outside valid range [" << validRange[0] << ", " << validRange[1] << "]";