Home | History | Annotate | Download | only in common

Lines Matching refs:TextureLevelPyramid

2904 // TextureLevelPyramid
2906 TextureLevelPyramid::TextureLevelPyramid (const TextureFormat& format, int numLevels)
2913 TextureLevelPyramid::TextureLevelPyramid (const TextureLevelPyramid& other)
2930 TextureLevelPyramid& TextureLevelPyramid::operator= (const TextureLevelPyramid& other)
2955 TextureLevelPyramid::~TextureLevelPyramid (void)
2959 void TextureLevelPyramid::allocLevel (int levelNdx, int width, int height, int depth)
2969 void TextureLevelPyramid::clearLevel (int levelNdx)
2980 : TextureLevelPyramid (format, computeMipPyramidLevels(width))
2987 : TextureLevelPyramid (other)
2998 TextureLevelPyramid::operator=(other);
3016 TextureLevelPyramid::allocLevel(levelNdx, width, 1, 1);
3022 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height))
3030 : TextureLevelPyramid (other)
3042 TextureLevelPyramid::operator=(other);
3062 TextureLevelPyramid::allocLevel(levelNdx, width, height, 1);
3343 : TextureLevelPyramid (format, computeMipPyramidLevels(width))
3351 : TextureLevelPyramid (other)
3363 TextureLevelPyramid::operator=(other);
3382 TextureLevelPyramid::allocLevel(levelNdx, width, m_numLayers, 1);
3388 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height))
3397 : TextureLevelPyramid (other)
3410 TextureLevelPyramid::operator=(other);
3431 TextureLevelPyramid::allocLevel(levelNdx, width, height, m_numLayers);
3445 : TextureLevelPyramid (format, computeMipPyramidLevels(width, height, depth))
3454 : TextureLevelPyramid (other)
3467 TextureLevelPyramid::operator=(other);
3489 TextureLevelPyramid::allocLevel(levelNdx, width, height, depth);
3539 : TextureLevelPyramid (format, computeMipPyramidLevels(size))
3548 : TextureLevelPyramid (other)
3561 TextureLevelPyramid::operator=(other);
3582 TextureLevelPyramid::allocLevel(levelNdx, size, size, m_depth);