Lines Matching refs:sourceRect
388 bool Texture::copy(egl::Image *source, const sw::SliceRect &sourceRect, GLint xoffset, GLint yoffse… in copy() argument
392 …ect destRect(xoffset, yoffset, xoffset + (sourceRect.x1 - sourceRect.x0), yoffset + (sourceRect.y1… in copy()
393 sw::SliceRectF sourceRectF(static_cast<float>(sourceRect.x0), in copy()
394 static_cast<float>(sourceRect.y0), in copy()
395 static_cast<float>(sourceRect.x1), in copy()
396 static_cast<float>(sourceRect.y1), in copy()
397 sourceRect.slice); in copy()
630 sw::SliceRect sourceRect(x, y, x + width, y + height, 0); in copyImage() local
631 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copyImage()
633 copy(renderTarget, sourceRect, 0, 0, 0, image[level]); in copyImage()
661 sw::SliceRect sourceRect(x, y, x + width, y + height, 0); in copySubImage() local
662 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copySubImage()
664 copy(renderTarget, sourceRect, xoffset, yoffset, zoffset, image[level]); in copySubImage()
1265 sw::SliceRect sourceRect(x, y, x + width, y + height, 0); in copyImage() local
1266 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copyImage()
1268 copy(renderTarget, sourceRect, 0, 0, 0, image[face][level]); in copyImage()
1310 sw::SliceRect sourceRect(x, y, x + width, y + height, 0); in copySubImage() local
1311 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copySubImage()
1313 copy(renderTarget, sourceRect, xoffset, yoffset, zoffset, image[face][level]); in copySubImage()
1595 sw::SliceRect sourceRect(x, y, x + width, y + height, z); in copyImage() local
1596 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copyImage()
1598 for(GLint sliceZ = 0; sliceZ < depth; sliceZ++, sourceRect.slice++) in copyImage()
1600 copy(renderTarget, sourceRect, 0, 0, sliceZ, image[level]); in copyImage()
1629 sw::SliceRect sourceRect = {x, y, x + width, y + height, 0}; in copySubImage() local
1630 sourceRect.clip(0, 0, renderTarget->getWidth(), renderTarget->getHeight()); in copySubImage()
1632 copy(renderTarget, sourceRect, xoffset, yoffset, zoffset, image[level]); in copySubImage()