Home
last modified time | relevance | path

Searched refs:TestTexture (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageUtil.hpp41 class TestTexture;
93 const TestTexture& testTexture,
96 class TestTexture class
99 TestTexture (const tcu::TextureFormat& format, int width, int height, int depth);
100TestTexture (const tcu::CompressedTexFormat& format, int width, int height, int depth);
101 virtual ~TestTexture (void);
118 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const = 0;
129 void copyToTexture (TestTexture&) const;
135 class TestTexture1D : public TestTexture
153 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
[all …]
DvktPipelineImageUtil.cpp357 const TestTexture& srcTexture, in uploadTestTextureInternal()
358 const TestTexture* srcStencilTexture, in uploadTestTextureInternal()
524 const TestTexture& srcTexture, in uploadTestTexture()
529 de::MovePtr<TestTexture> srcDepthTexture; in uploadTestTexture()
530 de::MovePtr<TestTexture> srcStencilTexture; in uploadTestTexture()
583 TestTexture::TestTexture (const tcu::TextureFormat& format, int width, int height, int depth) in TestTexture() function in vkt::pipeline::TestTexture
595 TestTexture::TestTexture (const tcu::CompressedTexFormat& format, int width, int height, int depth) in TestTexture() function in vkt::pipeline::TestTexture
607 TestTexture::~TestTexture (void) in ~TestTexture()
613 deUint32 TestTexture::getSize (void) const in getSize()
634 deUint32 TestTexture::getCompressedSize (void) const in getCompressedSize()
[all …]
DvktPipelineImageSamplingInstance.cpp129 static MovePtr<TestTexture> createTestTexture (const TcuFormatType format, VkImageViewType viewType… in createTestTexture()
131 MovePtr<TestTexture> texture; in createTestTexture()
138 texture = MovePtr<TestTexture>(new TestTexture1D(format, size.x())); in createTestTexture()
140 texture = MovePtr<TestTexture>(new TestTexture1DArray(format, size.x(), layerCount)); in createTestTexture()
147 texture = MovePtr<TestTexture>(new TestTexture2D(format, size.x(), size.y())); in createTestTexture()
155 texture = MovePtr<TestTexture>(new TestTextureCube(format, size.x())); in createTestTexture()
161 texture = MovePtr<TestTexture>(new TestTextureCubeArray(format, size.x(), layerCount)); in createTestTexture()
166 texture = MovePtr<TestTexture>(new TestTexture2DArray(format, size.x(), size.y(), layerCount)); in createTestTexture()
173 texture = MovePtr<TestTexture>(new TestTexture3D(format, size.x(), size.y(), size.z())); in createTestTexture()
1178 vk::VkImageSubresourceRange resolveSubresourceRange (const TestTexture& testTexture, const vk::VkIm… in resolveSubresourceRange()
[all …]
DvktPipelineImageSamplingInstance.hpp98 de::MovePtr<TestTexture> m_texture;
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureTestUtil.hpp118 typedef de::SharedPtr<pipeline::TestTexture> TestTextureSp;
141 const pipeline::TestTexture& getTestTexture (void) { return *m_textureData; } in getTestTexture()