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.cpp363 for (GLuint i = 0; i < m_testValues.size(); ++i) in test()
390 gl.polygonOffset(m_testValues[i].factor, m_testValues[i].units); in test()
415 gl.polygonOffsetClamp(m_testValues[i].factor, m_testValues[i].units, m_testValues[i].clamp); in test()
524 m_testValues.clear(); in init()
525 m_testValues.push_back(PolygonOffsetClampValues(0.0f, -5000.0f, -0.0001f)); // Min offset case in init()
526 m_testValues.push_back(PolygonOffsetClampValues(0.0f, 5000.0f, 0.0001f)); // Max offset case in init()
591 m_testValues.clear(); in init()
592m_testValues.push_back(PolygonOffsetClampValues(0.0f, -1000.0f, 0.0f)); // Min offset, zero c… in init()
593m_testValues.push_back(PolygonOffsetClampValues(0.0f, -1000.0f, -INFINITY)); // Min Offset, infini… in init()
594m_testValues.push_back(PolygonOffsetClampValues(0.0f, 1000.0f, 0.0f)); // Max offset, zero c… in init()
[all …]
DglcPolygonOffsetClampTests.hpp98 std::vector<PolygonOffsetClampValues> m_testValues; member in glcts::PolygonOffsetClampValueTestCaseBase