Lines Matching defs:destImage
1146 * \param destImage the destination texture image.
1151 const struct gl_texture_image *destImage,
1156 const GLenum target = destImage->TexObject->Target;
1160 if (xoffset < - (GLint) destImage->Border) {
1165 if (xoffset + subWidth > (GLint) destImage->Width) {
1167 xoffset, subWidth, destImage->Width);
1173 GLint yBorder = (target == GL_TEXTURE_1D_ARRAY) ? 0 : destImage->Border;
1178 if (yoffset + subHeight > (GLint) destImage->Height) {
1180 func, yoffset, subHeight, destImage->Height);
1190 0 : destImage->Border;
1197 depth = (GLint) destImage->Depth;
1214 _mesa_get_format_block_size_3d(destImage->TexFormat, &bw, &bh, &bd);
1231 (xoffset + subWidth != (GLint) destImage->Width)) {
1238 (yoffset + subHeight != (GLint) destImage->Height)) {
1245 (zoffset + subDepth != (GLint) destImage->Depth)) {