Home
last modified time | relevance | path

Searched refs:m_testValues (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/openglcts/modules/common/
DglcPolygonOffsetClampTests.cpp359 for (GLuint i = 0; i < m_testValues.size(); ++i) in test()
386 gl.polygonOffset(m_testValues[i].factor, m_testValues[i].units); in test()
411 gl.polygonOffsetClamp(m_testValues[i].factor, m_testValues[i].units, m_testValues[i].clamp); in test()
516 m_testValues.clear(); in init()
517 m_testValues.push_back(PolygonOffsetClampValues(0.0f, -1000.0f, -0.0001f)); // Min offset case in init()
518 m_testValues.push_back(PolygonOffsetClampValues(0.0f, 1000.0f, 0.0001f)); // Max offset case in init()
583 m_testValues.clear(); in init()
584m_testValues.push_back(PolygonOffsetClampValues(0.0f, -1000.0f, 0.0f)); // Min offset, zero clam… in init()
585m_testValues.push_back(PolygonOffsetClampValues(0.0f, -1000.0f, -INFINITY)); // Min Offset, infini… in init()
586m_testValues.push_back(PolygonOffsetClampValues(0.0f, 1000.0f, 0.0f)); // Max offset, zero clamp… in init()
[all …]
DglcPolygonOffsetClampTests.hpp98 std::vector<PolygonOffsetClampValues> m_testValues; member in glcts::PolygonOffsetClampValueTestCaseBase