Lines Matching defs:range
135 float range[2] = { 0.0f, 0.0f };
136 m_context.getRenderContext().getFunctions().getFloatv(GL_ALIASED_LINE_WIDTH_RANGE, range);
138 if (m_lineWidth < range[0] || m_lineWidth > range[1])
141 m_testCtx.getLog() << tcu::TestLog::Message << "ALIASED_LINE_WIDTH_RANGE = [" << range[0] << ", " << range[1] << "]" << tcu::TestLog::EndMessage;
146 float range[2] = { 0.0f, 0.0f };
147 m_context.getRenderContext().getFunctions().getFloatv(GL_ALIASED_POINT_SIZE_RANGE, range);
149 if (m_pointSize < range[0] || m_pointSize > range[1])
152 m_testCtx.getLog() << tcu::TestLog::Message << "ALIASED_POINT_SIZE_RANGE = [" << range[0] << ", " << range[1] << "]" << tcu::TestLog::EndMessage;
347 float range[2] = { 0.0f, 0.0f };
348 m_context.getRenderContext().getFunctions().getFloatv(GL_ALIASED_LINE_WIDTH_RANGE, range);
350 m_lineWidth = range[1];
452 float range[2] = { 0.0f, 0.0f };
453 m_context.getRenderContext().getFunctions().getFloatv(GL_ALIASED_POINT_SIZE_RANGE, range);
455 m_pointSize = range[1];