Lines Matching refs:y
87 void DisplayPlane::checkPosition(int& x, int& y, int& w, int& h) in checkPosition() argument
96 if (y < 0) in checkPosition()
97 y = 0; in checkPosition()
100 if ((y + h) > mode->vdisplay) in checkPosition()
101 h = mode->vdisplay - y; in checkPosition()
104 void DisplayPlane::setPosition(int x, int y, int w, int h) in setPosition() argument
106 ATRACE("Position = %d, %d - %dx%d", x, y, w, h); in setPosition()
108 if (mPosition.x != x || mPosition.y != y || in setPosition()
112 mPosition.y = y; in setPosition()
118 void DisplayPlane::setSourceCrop(int x, int y, int w, int h) in setSourceCrop() argument
120 ATRACE("Source crop = %d, %d - %dx%d", x, y, w, h); in setSourceCrop()
122 if (mSrcCrop.x != x || mSrcCrop.y != y || in setSourceCrop()
126 mSrcCrop.y = y; in setSourceCrop()
215 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h); in setDataBuffer()