Lines Matching refs:srcDepth

1538                GLint srcWidth, GLint srcHeight, GLint srcDepth,  in make_3d_mipmap()  argument
1545 const GLint srcDepthNB = srcDepth - 2 * border; in make_3d_mipmap()
1564 srcImageOffset = (srcDepth == dstDepth) ? 0 : 1; in make_3d_mipmap()
1625 srcWidth, srcHeight, srcPtr[srcDepth - 1], srcRowStride, in make_3d_mipmap()
1629 if (srcDepth == dstDepth) { in make_3d_mipmap()
1706 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_generate_mipmap_level() argument
1734 srcWidth, srcHeight, srcDepth, in _mesa_generate_mipmap_level()
1772 GLint srcWidth, GLint srcHeight, GLint srcDepth, in next_mipmap_level_size() argument
1790 if ((srcDepth - 2 * border > 1) && in next_mipmap_level_size()
1792 *dstDepth = (srcDepth - 2 * border) / 2 + 2 * border; in next_mipmap_level_size()
1795 *dstDepth = srcDepth; /* can't go smaller */ in next_mipmap_level_size()
1800 *dstDepth == srcDepth) { in next_mipmap_level_size()
1898 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_uncompressed() local
1911 srcDepth = srcImage->Depth; in generate_mipmap_uncompressed()
1915 srcWidth, srcHeight, srcDepth, in generate_mipmap_uncompressed()
1935 srcDepth = srcHeight; in generate_mipmap_uncompressed()
1942 srcMaps = (GLubyte **) calloc(srcDepth, sizeof(GLubyte *)); in generate_mipmap_uncompressed()
1944 for (slice = 0; slice < srcDepth; slice++) { in generate_mipmap_uncompressed()
1980 srcWidth, srcHeight, srcDepth, in generate_mipmap_uncompressed()
1988 for (slice = 0; slice < srcDepth; slice++) { in generate_mipmap_uncompressed()
2083 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_compressed() local
2094 srcDepth = srcImage->Depth; in generate_mipmap_compressed()
2098 srcWidth, srcHeight, srcDepth, in generate_mipmap_compressed()
2122 srcWidth, srcHeight, srcDepth, in generate_mipmap_compressed()