Home
last modified time | relevance | path

Searched refs:clippedDestArea (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DBlit11.cpp54 const gl::Rectangle &clippedDestArea, in StretchedBlitNearest_RowByRow() argument
63 size_t copySize = pixelSize * clippedDestArea.width; in StretchedBlitNearest_RowByRow()
65 size_t destOffset = clippedDestArea.x * pixelSize; in StretchedBlitNearest_RowByRow()
67 for (int y = clippedDestArea.y; y < clippedDestArea.y + clippedDestArea.height; y++) in StretchedBlitNearest_RowByRow()
86 const gl::Rectangle &clippedDestArea, in StretchedBlitNearest_PixelByPixel() argument
98 auto xMax = clippedDestArea.x + clippedDestArea.width; in StretchedBlitNearest_PixelByPixel()
99 auto yMax = clippedDestArea.y + clippedDestArea.height; in StretchedBlitNearest_PixelByPixel()
101 for (int writeRow = clippedDestArea.y; writeRow < yMax; writeRow++) in StretchedBlitNearest_PixelByPixel()
110 for (int writeColumn = clippedDestArea.x; writeColumn < xMax; writeColumn++) in StretchedBlitNearest_PixelByPixel()
144 gl::Rectangle clippedDestArea(destArea.x, destArea.y, destArea.width, destArea.height); in StretchedBlitNearest() local
[all …]