Home
last modified time | relevance | path

Searched refs:dstDepth (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/main/
Dmipmap.h46 GLint dstWidth, GLint dstHeight, GLint dstDepth,
62 GLint *dstWidth, GLint *dstHeight, GLint *dstDepth);
Dmipmap.c1566 GLint dstWidth, GLint dstHeight, GLint dstDepth, in make_3d_mipmap() argument
1574 const GLint dstDepthNB = dstDepth - 2 * border; in make_3d_mipmap()
1585 srcImageOffset = (srcDepth == dstDepth) ? 0 : 1; in make_3d_mipmap()
1647 dstWidth, dstHeight, dstPtr[dstDepth - 1], dstRowStride); in make_3d_mipmap()
1650 if (srcDepth == dstDepth) { in make_3d_mipmap()
1730 GLint dstWidth, GLint dstHeight, GLint dstDepth, in _mesa_generate_mipmap_level() argument
1757 dstWidth, dstHeight, dstDepth, in _mesa_generate_mipmap_level()
1763 for (i = 0; i < dstDepth; i++) { in _mesa_generate_mipmap_level()
1771 for (i = 0; i < dstDepth; i++) { in _mesa_generate_mipmap_level()
1794 GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) in _mesa_next_mipmap_level_size() argument
[all …]
Dcopyimage.c617 int dstWidth, dstHeight, dstDepth; in _mesa_CopyImageSubData() local
702 dstDepth = srcDepth; in _mesa_CopyImageSubData()
710 dstX, dstY, dstZ, dstWidth, dstHeight, dstDepth, in _mesa_CopyImageSubData()
/external/mesa3d/src/mesa/drivers/common/
Dmeta_generate_mipmap.c276 GLsizei dstWidth, dstHeight, dstDepth; in _mesa_meta_GenerateMipmap() local
294 dstDepth = target == GL_TEXTURE_3D ? minify(srcDepth, 1) : srcDepth; in _mesa_meta_GenerateMipmap()
298 dstDepth == srcDepth) { in _mesa_meta_GenerateMipmap()
325 for (layer = 0; layer < dstDepth; ++layer) { in _mesa_meta_GenerateMipmap()
/external/angle/src/libANGLE/renderer/metal/
DTextureMtl.mm1201 uint32_t dstDepth = mNativeTexture->depth(mip);
1205 size_t dstDataSize = dstDepthPitch * dstDepth;
1220 context, angleFormat, MTLRegionMake3D(0, 0, 0, dstWidth, dstHeight, dstDepth), mip,
1225 prevLevelDepth = dstDepth;