Lines Matching refs:tessellatedPoints
2919 std::vector<GeneratedPoint> tessellatedPoints; in genReferencePointData() local
2921 tessellatedPoints.resize(currentPoints.size() * 4); in genReferencePointData()
2926 tessellatedPoints[4 * ndx + 0].center = position + tcu::Vec2(-0.07f, -0.07f); in genReferencePointData()
2927 tessellatedPoints[4 * ndx + 0].size = currentPoints[ndx].size; in genReferencePointData()
2928 tessellatedPoints[4 * ndx + 0].even = currentPoints[ndx].even; in genReferencePointData()
2930 tessellatedPoints[4 * ndx + 1].center = position + tcu::Vec2( 0.07f, -0.07f); in genReferencePointData()
2931 tessellatedPoints[4 * ndx + 1].size = currentPoints[ndx].size; in genReferencePointData()
2932 tessellatedPoints[4 * ndx + 1].even = currentPoints[ndx].even; in genReferencePointData()
2934 tessellatedPoints[4 * ndx + 2].center = position + tcu::Vec2( 0.07f, 0.07f); in genReferencePointData()
2935 tessellatedPoints[4 * ndx + 2].size = currentPoints[ndx].size; in genReferencePointData()
2936 tessellatedPoints[4 * ndx + 2].even = currentPoints[ndx].even; in genReferencePointData()
2938 tessellatedPoints[4 * ndx + 3].center = position + tcu::Vec2(-0.07f, 0.07f); in genReferencePointData()
2939 tessellatedPoints[4 * ndx + 3].size = currentPoints[ndx].size; in genReferencePointData()
2940 tessellatedPoints[4 * ndx + 3].even = currentPoints[ndx].even; in genReferencePointData()
2943 currentPoints.swap(tessellatedPoints); in genReferencePointData()