Lines Matching defs:destImage
1147 * \param destImage the destination texture image.
1152 const struct gl_texture_image *destImage,
1157 const GLenum target = destImage->TexObject->Target;
1161 if (xoffset < - (GLint) destImage->Border) {
1166 if (xoffset + subWidth > (GLint) destImage->Width) {
1168 xoffset, subWidth, destImage->Width);
1174 GLint yBorder = (target == GL_TEXTURE_1D_ARRAY) ? 0 : destImage->Border;
1179 if (yoffset + subHeight > (GLint) destImage->Height) {
1181 func, yoffset, subHeight, destImage->Height);
1191 0 : destImage->Border;
1198 depth = (GLint) destImage->Depth;
1215 _mesa_get_format_block_size_3d(destImage->TexFormat, &bw, &bh, &bd);
1232 (xoffset + subWidth != (GLint) destImage->Width)) {
1239 (yoffset + subHeight != (GLint) destImage->Height)) {
1246 (zoffset + subDepth != (GLint) destImage->Depth)) {