Home | History | Annotate | Download | only in screenrecord

Lines Matching refs:xpos

254         float xpos, float ypos, const String8& str) {
255 ALOGV("drawWrappedString %.3f,%.3f '%s'", xpos, ypos, str.string());
265 if (xpos < mBorderWidth) {
266 xpos = mBorderWidth;
272 const size_t maxWidth = (mScreenWidth - mBorderWidth) - xpos;
274 ALOGE("Unable to render text: xpos=%.3f border=%.3f width=%u",
275 xpos, mBorderWidth, mScreenWidth);
281 drawString(texRender, Program::kIdentity, xpos, ypos, str);
289 float xposAdj = (start == mangle) ? xpos : xpos + indentWidth;