Lines Matching refs:TextureLevelPyramid
3459 TextureLevelPyramid::TextureLevelPyramid (const TextureFormat& format, int numLevels) in TextureLevelPyramid() function in tcu::TextureLevelPyramid
3466 TextureLevelPyramid::TextureLevelPyramid (const TextureLevelPyramid& other) in TextureLevelPyramid() function in tcu::TextureLevelPyramid
3483 TextureLevelPyramid& TextureLevelPyramid::operator= (const TextureLevelPyramid& other) in operator =()
3508 TextureLevelPyramid::~TextureLevelPyramid (void) in ~TextureLevelPyramid()
3512 void TextureLevelPyramid::allocLevel (int levelNdx, int width, int height, int depth) in allocLevel()
3522 void TextureLevelPyramid::clearLevel (int levelNdx) in clearLevel()
3533 : TextureLevelPyramid (format, computeMipPyramidLevels(width)) in Texture1D()
3540 : TextureLevelPyramid (other) in Texture1D()
3551 TextureLevelPyramid::operator=(other); in operator =()
3569 TextureLevelPyramid::allocLevel(levelNdx, width, 1, 1); in allocLevel()
3575 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height)) in Texture2D()
3584 : TextureLevelPyramid (format, mipmaps) in Texture2D()
3593 : TextureLevelPyramid (other) in Texture2D()
3606 TextureLevelPyramid::operator=(other); in operator =()
3626 TextureLevelPyramid::allocLevel(levelNdx, width, height, 1); in allocLevel()
3908 : TextureLevelPyramid (format, computeMipPyramidLevels(width)) in Texture1DArray()
3916 : TextureLevelPyramid (other) in Texture1DArray()
3928 TextureLevelPyramid::operator=(other); in operator =()
3947 TextureLevelPyramid::allocLevel(levelNdx, width, m_numLayers, 1); in allocLevel()
3953 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height)) in Texture2DArray()
3962 : TextureLevelPyramid (other) in Texture2DArray()
3975 TextureLevelPyramid::operator=(other); in operator =()
3996 TextureLevelPyramid::allocLevel(levelNdx, width, height, m_numLayers); in allocLevel()
4010 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height, depth)) in Texture3D()
4019 : TextureLevelPyramid (other) in Texture3D()
4032 TextureLevelPyramid::operator=(other); in operator =()
4054 TextureLevelPyramid::allocLevel(levelNdx, width, height, depth); in allocLevel()
4104 : TextureLevelPyramid (format, computeMipPyramidLevels(size)) in TextureCubeArray()
4113 : TextureLevelPyramid (other) in TextureCubeArray()
4126 TextureLevelPyramid::operator=(other); in operator =()
4147 TextureLevelPyramid::allocLevel(levelNdx, size, size, m_depth); in allocLevel()