HomeSort by relevance Sort by last modified time
    Searched defs:base_x (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 235 double base_x = m_DestWidth > 0 ? 0.0f : (FX_FLOAT)(m_DestWidth); local
237 double src_left = FXSYS_Mul(scale_x, (FX_FLOAT)(clip_rect.left) + base_x);
238 double src_right = FXSYS_Mul(scale_x, (FX_FLOAT)(clip_rect.right) + base_x);
    [all...]
  /external/chromium_org/content/common/gpu/client/
gl_helper_unittest.cc 418 int base_x = static_cast<int>(floorf(x)); local
420 x -= base_x;
422 return (ChannelAsFloat(pixels, base_x, base_y, c) * (1 - x) * (1 - y) +
423 ChannelAsFloat(pixels, base_x + 1, base_y, c) * x * (1 - y) +
424 ChannelAsFloat(pixels, base_x, base_y + 1, c) * (1 - x) * y +
425 ChannelAsFloat(pixels, base_x + 1, base_y + 1, c) * x * y);
    [all...]

Completed in 109 milliseconds