Lines Matching full:rasterpos
1234 const tcu::IVec2 rasterPos ((int)deFloatRound((vertices[ndx].x() * 0.5f + 0.5f) * image.getWidth()), (int)deFloatRound((vertices[ndx].y() * 0.5f + 0.5f) * image.getHeight()));
1243 if (rasterPos.x() + dx < 0 || rasterPos.x() + dx >= image.getWidth() ||
1244 rasterPos.y() + dy < 0 || rasterPos.y() + dy >= image.getHeight())
1248 const tcu::RGBA result = image.getPixel(rasterPos.x() + dx, rasterPos.y() + dy);
1261 << "\tExpected non-black pixels near " << rasterPos