• Home
  • Raw
  • Download

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()
1770 GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) in _mesa_next_mipmap_level_size() argument
1793 *dstDepth = (srcDepth - 2 * border) / 2 + 2 * border; in _mesa_next_mipmap_level_size()
1796 *dstDepth = srcDepth; /* can't go smaller */ in _mesa_next_mipmap_level_size()
1801 *dstDepth == srcDepth) { in _mesa_next_mipmap_level_size()
1938 GLint dstWidth, dstHeight, dstDepth; in generate_mipmap_uncompressed() local
1959 dstDepth = dstImage->Depth; in generate_mipmap_uncompressed()
1963 dstDepth = dstHeight; in generate_mipmap_uncompressed()
1987 dstMaps = calloc(dstDepth, sizeof(GLubyte *)); in generate_mipmap_uncompressed()
1989 for (slice = 0; slice < dstDepth; slice++) { in generate_mipmap_uncompressed()
2009 dstWidth, dstHeight, dstDepth, in generate_mipmap_uncompressed()
2025 for (slice = 0; slice < dstDepth; slice++) { in generate_mipmap_uncompressed()
2125 GLint dstWidth, dstHeight, dstDepth; in generate_mipmap_compressed() local
2145 dstDepth = dstImage->Depth; in generate_mipmap_compressed()
2152 temp_dst = malloc(temp_dst_img_stride * dstDepth); in generate_mipmap_compressed()
2163 for (i = 0; i < dstDepth; i++) { in generate_mipmap_compressed()
2174 dstWidth, dstHeight, dstDepth, in generate_mipmap_compressed()
2179 0, 0, 0, dstWidth, dstHeight, dstDepth, in generate_mipmap_compressed()