Lines Matching defs:depth
750 TestTexture::TestTexture (const tcu::TextureFormat& format, int width, int height, int depth)
754 DE_ASSERT(depth >= 1);
759 DE_UNREF(depth);
762 TestTexture::TestTexture (const tcu::CompressedTexFormat& format, int width, int height, int depth)
766 DE_ASSERT(depth >= 1);
771 DE_UNREF(depth);
1335 TestTexture3D::TestTexture3D (const tcu::TextureFormat& format, int width, int height, int depth)
1336 : TestTexture (format, width, height, depth)
1337 , m_texture (format, width, height, depth)
1343 TestTexture3D::TestTexture3D (const tcu::CompressedTexFormat& format, int width, int height, int depth)
1344 : TestTexture (format, width, height, depth)
1345 , m_texture (tcu::getUncompressedFormat(format), width, height, depth)