Lines Matching refs:dstDepth
1541 GLint dstWidth, GLint dstHeight, GLint dstDepth, in make_3d_mipmap() argument
1549 const GLint dstDepthNB = dstDepth - 2 * border; in make_3d_mipmap()
1560 srcImageOffset = (srcDepth == dstDepth) ? 0 : 1; in make_3d_mipmap()
1622 dstWidth, dstHeight, dstPtr[dstDepth - 1], dstRowStride); in make_3d_mipmap()
1625 if (srcDepth == dstDepth) { in make_3d_mipmap()
1705 GLint dstWidth, GLint dstHeight, GLint dstDepth, in _mesa_generate_mipmap_level() argument
1732 dstWidth, dstHeight, dstDepth, in _mesa_generate_mipmap_level()
1738 for (i = 0; i < dstDepth; i++) { in _mesa_generate_mipmap_level()
1746 for (i = 0; i < dstDepth; i++) { in _mesa_generate_mipmap_level()
1769 GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) in _mesa_next_mipmap_level_size() argument
1792 *dstDepth = (srcDepth - 2 * border) / 2 + 2 * border; in _mesa_next_mipmap_level_size()
1795 *dstDepth = srcDepth; /* can't go smaller */ in _mesa_next_mipmap_level_size()
1800 *dstDepth == srcDepth) { in _mesa_next_mipmap_level_size()
1937 GLint dstWidth, dstHeight, dstDepth; in generate_mipmap_uncompressed() local
1958 dstDepth = dstImage->Depth; in generate_mipmap_uncompressed()
1962 dstDepth = dstHeight; in generate_mipmap_uncompressed()
1986 dstMaps = calloc(dstDepth, sizeof(GLubyte *)); in generate_mipmap_uncompressed()
1988 for (slice = 0; slice < dstDepth; slice++) { in generate_mipmap_uncompressed()
2008 dstWidth, dstHeight, dstDepth, in generate_mipmap_uncompressed()
2024 for (slice = 0; slice < dstDepth; slice++) { in generate_mipmap_uncompressed()
2124 GLint dstWidth, dstHeight, dstDepth; in generate_mipmap_compressed() local
2144 dstDepth = dstImage->Depth; in generate_mipmap_compressed()
2151 temp_dst = malloc(temp_dst_img_stride * dstDepth); in generate_mipmap_compressed()
2162 for (i = 0; i < dstDepth; i++) { in generate_mipmap_compressed()
2173 dstWidth, dstHeight, dstDepth, in generate_mipmap_compressed()
2178 0, 0, 0, dstWidth, dstHeight, dstDepth, in generate_mipmap_compressed()