Home | History | Annotate | Download | only in client

Lines Matching defs:base_y

466     int base_y = static_cast<int>(floorf(y));
468 y -= base_y;
469 return (ChannelAsFloat(pixels, base_x, base_y, c) * (1 - x) * (1 - y) +
470 ChannelAsFloat(pixels, base_x + 1, base_y, c) * x * (1 - y) +
471 ChannelAsFloat(pixels, base_x, base_y + 1, c) * (1 - x) * y +
472 ChannelAsFloat(pixels, base_x + 1, base_y