• Home
  • Raw
  • Download

Lines Matching refs:srcDepth

1539                GLint srcWidth, GLint srcHeight, GLint srcDepth,  in make_3d_mipmap()  argument
1546 const GLint srcDepthNB = srcDepth - 2 * border; in make_3d_mipmap()
1560 srcImageOffset = (srcDepth == dstDepth) ? 0 : 1; in make_3d_mipmap()
1621 srcWidth, srcHeight, srcPtr[srcDepth - 1], srcRowStride, in make_3d_mipmap()
1625 if (srcDepth == dstDepth) { in make_3d_mipmap()
1702 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_generate_mipmap_level() argument
1730 srcWidth, srcHeight, srcDepth, in _mesa_generate_mipmap_level()
1769 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_next_mipmap_level_size() argument
1788 if ((srcDepth - 2 * border > 1) && in _mesa_next_mipmap_level_size()
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()
1937 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_uncompressed() local
1949 srcDepth = srcImage->Depth; in generate_mipmap_uncompressed()
1962 srcDepth = srcHeight; in generate_mipmap_uncompressed()
1969 srcMaps = calloc(srcDepth, sizeof(GLubyte *)); in generate_mipmap_uncompressed()
1971 for (slice = 0; slice < srcDepth; slice++) { in generate_mipmap_uncompressed()
2007 srcWidth, srcHeight, srcDepth, in generate_mipmap_uncompressed()
2015 for (slice = 0; slice < srcDepth; slice++) { in generate_mipmap_uncompressed()
2124 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_compressed() local
2135 srcDepth = srcImage->Depth; in generate_mipmap_compressed()
2160 for (i = 0; i < srcDepth; i++) { in generate_mipmap_compressed()
2171 srcWidth, srcHeight, srcDepth, in generate_mipmap_compressed()