Lines Matching defs:width
750 TestTexture::TestTexture (const tcu::TextureFormat& format, int width, int height, int depth)
752 DE_ASSERT(width >= 1);
757 DE_UNREF(width);
762 TestTexture::TestTexture (const tcu::CompressedTexFormat& format, int width, int height, int depth)
764 DE_ASSERT(width >= 1);
769 DE_UNREF(width);
1048 TestTexture1D::TestTexture1D (const tcu::TextureFormat& format, int width)
1049 : TestTexture (format, width, 1, 1)
1050 , m_texture (format, width)
1056 TestTexture1D::TestTexture1D (const tcu::CompressedTexFormat& format, int width)
1057 : TestTexture (format, width, 1, 1)
1058 , m_texture (tcu::getUncompressedFormat(format), width)
1110 TestTexture1DArray::TestTexture1DArray (const tcu::TextureFormat& format, int width, int arraySize)
1111 : TestTexture (format, width, arraySize, 1)
1112 , m_texture (format, width, arraySize)
1118 TestTexture1DArray::TestTexture1DArray (const tcu::CompressedTexFormat& format, int width, int arraySize)
1119 : TestTexture (format, width, arraySize, 1)
1120 , m_texture (tcu::getUncompressedFormat(format), width, arraySize)
1187 TestTexture2D::TestTexture2D (const tcu::TextureFormat& format, int width, int height)
1188 : TestTexture (format, width, height, 1)
1189 , m_texture (format, width, height)
1195 TestTexture2D::TestTexture2D (const tcu::TextureFormat& format, int width, int height, int miplevels)
1196 : TestTexture(format, width, height, 1)
1197 , m_texture(format, width, height, miplevels)
1204 TestTexture2D::TestTexture2D (const tcu::CompressedTexFormat& format, int width, int height)
1205 : TestTexture (format, width, height, 1)
1206 , m_texture (tcu::getUncompressedFormat(format), width, height)
1258 TestTexture2DArray::TestTexture2DArray (const tcu::TextureFormat& format, int width, int height, int arraySize)
1259 : TestTexture (format, width, height, arraySize)
1260 , m_texture (format, width, height, arraySize)
1266 TestTexture2DArray::TestTexture2DArray (const tcu::CompressedTexFormat& format, int width, int height, int arraySize)
1267 : TestTexture (format, width, height, arraySize)
1268 , m_texture (tcu::getUncompressedFormat(format), width, height, arraySize)
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)