Searched refs:fullRect (Results 1 – 1 of 1) sorted by relevance
205 MosaicRect fullRect; in runBlend() local207 fullRect.left = (int) floor(global_rect.lft); // min-x in runBlend()208 fullRect.top = (int) floor(global_rect.bot); // min-y in runBlend()209 fullRect.right = (int) ceil(global_rect.rgt); // max-x in runBlend()210 fullRect.bottom = (int) ceil(global_rect.top);// max-y in runBlend()211 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1); in runBlend()212 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1); in runBlend()218 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1); in runBlend()219 xRightMost = min(Mwidth - 1, min(xRightCorners[0], xRightCorners[1]) - fullRect.left - 1); in runBlend()221 yTopMost = max(0, max(yTopCorners[0], yTopCorners[1]) - fullRect.top + 1); in runBlend()[all …]