Lines Matching refs:TestTexture
135 static MovePtr<TestTexture> createTestTexture (const TcuFormatType format, VkImageViewType viewType, const tcu::IVec3& size, int layerCount)
137 MovePtr<TestTexture> texture;
144 texture = MovePtr<TestTexture>(new TestTexture1D(format, size.x()));
146 texture = MovePtr<TestTexture>(new TestTexture1DArray(format, size.x(), layerCount));
153 texture = MovePtr<TestTexture>(new TestTexture2D(format, size.x(), size.y()));
161 texture = MovePtr<TestTexture>(new TestTextureCube(format, size.x()));
167 texture = MovePtr<TestTexture>(new TestTextureCubeArray(format, size.x(), layerCount));
172 texture = MovePtr<TestTexture>(new TestTexture2DArray(format, size.x(), size.y(), layerCount));
179 texture = MovePtr<TestTexture>(new TestTexture3D(format, size.x(), size.y(), size.z()));
1240 vk::VkImageSubresourceRange resolveSubresourceRange (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource)
1253 MovePtr<tcu::Texture1DView> getTexture1DView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1269 MovePtr<tcu::Texture1DArrayView> getTexture1DArrayView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1290 MovePtr<tcu::Texture2DView> getTexture2DView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1312 MovePtr<tcu::Texture2DArrayView> getTexture2DArrayView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1333 MovePtr<tcu::TextureCubeView> getTextureCubeView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1375 MovePtr<tcu::TextureCubeArrayView> getTextureCubeArrayView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1394 MovePtr<tcu::Texture3DView> getTexture3DView (const TestTexture& testTexture, const vk::VkImageSubresourceRange& subresource, std::vector<tcu::ConstPixelBufferAccess>& levels)
1406 bool validateResultImage (const TestTexture& texture,
1532 de::MovePtr<TestTexture> textureCopy;
1533 TestTexture* texture = DE_NULL;