Lines Matching defs:topRight
1085 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1090 dst[2] = bottomLeft.x(); dst[3] = topRight.y();
1091 dst[4] = topRight.x(); dst[5] = bottomLeft.y();
1092 dst[6] = topRight.x(); dst[7] = topRight.y();
1095 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1100 dst[3] = bottomLeft.x(); dst[ 4] = topRight.y(); dst[ 5] = (float)layerNdx;
1101 dst[6] = topRight.x(); dst[ 7] = bottomLeft.y(); dst[ 8] = (float)layerNdx;
1102 dst[9] = topRight.x(); dst[10] = topRight.y(); dst[11] = (float)layerNdx;
1190 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1221 dst[6+sRow] = sSign * topRight.x();
1222 dst[9+sRow] = sSign * topRight.x();
1225 dst[3+tRow] = tSign * topRight.y();
1227 dst[9+tRow] = tSign * topRight.y();
1230 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange)
1264 dst[ 8+sRow] = sSign * topRight.x();
1265 dst[12+sRow] = sSign * topRight.x();
1268 dst[ 4+tRow] = tSign * topRight.y();
1270 dst[12+tRow] = tSign * topRight.y();