Searched refs:destTex (Results 1 – 1 of 1) sorted by relevance
2216 const struct gl_texture_image *destTex ) in subtexture_error_check2() argument2218 if (!destTex) { in subtexture_error_check2()2224 if (xoffset < -((GLint)destTex->Border)) { in subtexture_error_check2()2229 if (xoffset + width > (GLint) (destTex->Width + destTex->Border)) { in subtexture_error_check2()2235 GLint yBorder = (target == GL_TEXTURE_1D_ARRAY) ? 0 : destTex->Border; in subtexture_error_check2()2241 if (yoffset + height > (GLint) destTex->Height + yBorder) { in subtexture_error_check2()2248 GLint zBorder = (target == GL_TEXTURE_2D_ARRAY) ? 0 : destTex->Border; in subtexture_error_check2()2253 if (zoffset + depth > (GLint) destTex->Depth + zBorder) { in subtexture_error_check2()2259 if (_mesa_is_format_compressed(destTex->TexFormat)) { in subtexture_error_check2()2262 if (compressedteximage_only_format(ctx, destTex->InternalFormat)) { in subtexture_error_check2()[all …]