Lines Matching refs:OffsetDirection
53 enum class OffsetDirection enum
69 NearestEdgeTestCase(deqp::Context& context, OffsetDirection direction);
75 static std::string getName (OffsetDirection direction);
76 static std::string getDesc (OffsetDirection direction);
101 std::string NearestEdgeTestCase::getName (OffsetDirection direction) in getName()
105 case OffsetDirection::LEFT: return "offset_left"; in getName()
106 case OffsetDirection::RIGHT: return "offset_right"; in getName()
113 std::string NearestEdgeTestCase::getDesc (OffsetDirection direction) in getDesc()
117 case OffsetDirection::LEFT: return "Sampling point near the left edge"; in getDesc()
118 case OffsetDirection::RIGHT: return "Sampling point near the right edge"; in getDesc()
168 NearestEdgeTestCase::NearestEdgeTestCase (deqp::Context& context, OffsetDirection direction) in NearestEdgeTestCase()
170 , m_offsetSign {(direction == OffsetDirection::LEFT) ? -1.0f : 1.0f} in NearestEdgeTestCase()
448 …static const std::vector<OffsetDirection> kDirections = { OffsetDirection::LEFT, OffsetDirection::… in init()