Lines Matching refs:imageExtent
170 …int bufferRowPitchBytes = ((region.bufferRowLength == 0) ? region.imageExtent.width : region.buffe… in copy()
173 region.imageExtent.height * bufferRowPitchBytes : in copy()
181 bool isSinglePlane = (region.imageExtent.depth == 1); in copy()
182 bool isSingleLine = (region.imageExtent.height == 1) && isSinglePlane; in copy()
183 bool isEntireLine = (region.imageExtent.width == mipLevelExtent.width) && in copy()
185 bool isEntirePlane = isEntireLine && (region.imageExtent.height == mipLevelExtent.height) && in copy()
200 copySize = region.imageExtent.width * imageBytesPerTexel; in copy()
204 copySize = region.imageExtent.height * imageRowPitchBytes; in copy()
208 copySize = region.imageExtent.depth * imageSlicePitchBytes; // Copy multiple planes in copy()
212 copySize = region.imageExtent.height * imageRowPitchBytes; in copy()
216 copySize = region.imageExtent.width * imageBytesPerTexel; in copy()
227 for(uint32_t z = 0; z < region.imageExtent.depth; z++) in copy()
236 for(uint32_t z = 0; z < region.imageExtent.depth; z++) in copy()
238 for(uint32_t y = 0; y < region.imageExtent.height; y++) in copy()