Lines Matching refs:bottomLeft
1085 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1089 dst[0] = bottomLeft.x(); dst[1] = bottomLeft.y();
1090 dst[2] = bottomLeft.x(); dst[3] = topRight.y();
1091 dst[4] = topRight.x(); dst[5] = bottomLeft.y();
1095 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1099 dst[0] = bottomLeft.x(); dst[ 1] = bottomLeft.y(); dst[ 2] = (float)layerNdx;
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;
1190 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight)
1219 dst[0+sRow] = sSign * bottomLeft.x();
1220 dst[3+sRow] = sSign * bottomLeft.x();
1224 dst[0+tRow] = tSign * bottomLeft.y();
1226 dst[6+tRow] = tSign * bottomLeft.y();
1230 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange)
1262 dst[ 0+sRow] = sSign * bottomLeft.x();
1263 dst[ 4+sRow] = sSign * bottomLeft.x();
1267 dst[ 0+tRow] = tSign * bottomLeft.y();
1269 dst[ 8+tRow] = tSign * bottomLeft.y();