• Home
  • Raw
  • Download

Lines Matching refs:srcHeight

1473                GLint srcWidth, GLint srcHeight,  in make_2d_mipmap()  argument
1488 if (srcHeight > 1 && srcHeight > dstHeight) { in make_2d_mipmap()
1521 srcPtr + srcWidth * (srcHeight - 1) * bpt, bpt); in make_2d_mipmap()
1524 srcPtr + (srcWidth * srcHeight - 1) * bpt, bpt); in make_2d_mipmap()
1532 srcPtr + (srcWidth * (srcHeight - 1) + 1) * bpt, in make_2d_mipmap()
1533 srcPtr + (srcWidth * (srcHeight - 1) + 1) * bpt, in make_2d_mipmap()
1537 if (srcHeight == dstHeight) { in make_2d_mipmap()
1539 for (row = 1; row < srcHeight; row++) { in make_2d_mipmap()
1565 GLint srcWidth, GLint srcHeight, GLint srcDepth, in make_3d_mipmap() argument
1582 bytesPerSrcImage = srcRowStride * srcHeight * bpt; in make_3d_mipmap()
1589 srcRowOffset = (srcHeight == dstHeight) ? 0 : srcRowStride; in make_3d_mipmap()
1643 srcWidth, srcHeight, srcPtr[0], srcRowStride, in make_3d_mipmap()
1647 srcWidth, srcHeight, srcPtr[srcDepth - 1], srcRowStride, in make_3d_mipmap()
1663 src = srcPtr[img * 2] + (srcHeight - 1) * srcRowStride; in make_3d_mipmap()
1693 + (srcHeight - 1) * srcRowStride; in make_3d_mipmap()
1695 + (srcHeight - 1) * srcRowStride; in make_3d_mipmap()
1728 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_generate_mipmap_level() argument
1751 srcWidth, srcHeight, srcData[0], srcRowStride, in _mesa_generate_mipmap_level()
1756 srcWidth, srcHeight, srcDepth, in _mesa_generate_mipmap_level()
1762 assert(srcHeight == 1); in _mesa_generate_mipmap_level()
1774 srcWidth, srcHeight, srcData[i], srcRowStride, in _mesa_generate_mipmap_level()
1794 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_next_mipmap_level_size() argument
1804 if ((srcHeight - 2 * border > 1) && in _mesa_next_mipmap_level_size()
1807 *dstHeight = (srcHeight - 2 * border) / 2 + 2 * border; in _mesa_next_mipmap_level_size()
1810 *dstHeight = srcHeight; /* can't go smaller */ in _mesa_next_mipmap_level_size()
1825 *dstHeight == srcHeight && in _mesa_next_mipmap_level_size()
1967 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_uncompressed() local
1978 srcHeight = srcImage->Height; in generate_mipmap_uncompressed()
1992 srcDepth = srcHeight; in generate_mipmap_uncompressed()
1994 srcHeight = 1; in generate_mipmap_uncompressed()
2003 0, 0, srcWidth, srcHeight, in generate_mipmap_uncompressed()
2037 srcWidth, srcHeight, srcDepth, in generate_mipmap_uncompressed()
2154 GLint srcWidth, srcHeight, srcDepth; in generate_mipmap_compressed() local
2164 srcHeight = srcImage->Height; in generate_mipmap_compressed()
2201 srcWidth, srcHeight, srcDepth, in generate_mipmap_compressed()