Home | History | Annotate | Download | only in glshared

Lines Matching refs:topRight

1490 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1495 dst[2] = bottomLeft.x(); dst[3] = topRight.y();
1496 dst[4] = topRight.x(); dst[5] = bottomLeft.y();
1497 dst[6] = topRight.x(); dst[7] = topRight.y();
1500 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1505 dst[3] = bottomLeft.x(); dst[ 4] = topRight.y(); dst[ 5] = (float)layerNdx;
1506 dst[6] = topRight.x(); dst[ 7] = bottomLeft.y(); dst[ 8] = (float)layerNdx;
1507 dst[9] = topRight.x(); dst[10] = topRight.y(); dst[11] = (float)layerNdx;
1595 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1626 dst[6+sRow] = sSign * topRight.x();
1627 dst[9+sRow] = sSign * topRight.x();
1630 dst[3+tRow] = tSign * topRight.y();
1632 dst[9+tRow] = tSign * topRight.y();
1635 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange)
1669 dst[ 8+sRow] = sSign * topRight.x();
1670 dst[12+sRow] = sSign * topRight.x();
1673 dst[ 4+tRow] = tSign * topRight.y();
1675 dst[12+tRow] = tSign * topRight.y();