Home
last modified time | relevance | path

Searched refs:TestTexture2D (Results 1 – 12 of 12) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageUtil.hpp240 class TestTexture2D : public TestTexture class
246 TestTexture2D (const tcu::TextureFormat& format, int width, int height);
247 TestTexture2D (const tcu::TextureFormat& format, int width, int height, int miplevels);
248 TestTexture2D (const tcu::CompressedTexFormat& format, int width, int height);
249 virtual ~TestTexture2D (void);
DvktPipelineImageUtil.cpp1120 TestTexture2D::TestTexture2D (const tcu::TextureFormat& format, int width, int height) in TestTexture2D() function in vkt::pipeline::TestTexture2D
1128 TestTexture2D::TestTexture2D (const tcu::TextureFormat& format, int width, int height, int miplevel… in TestTexture2D() function in vkt::pipeline::TestTexture2D
1137 TestTexture2D::TestTexture2D (const tcu::CompressedTexFormat& format, int width, int height) in TestTexture2D() function in vkt::pipeline::TestTexture2D
1145 TestTexture2D::~TestTexture2D (void) in ~TestTexture2D()
1149 int TestTexture2D::getNumLevels (void) const in getNumLevels()
1154 tcu::PixelBufferAccess TestTexture2D::getLevel (int level, int layer) in getLevel()
1161 const tcu::ConstPixelBufferAccess TestTexture2D::getLevel (int level, int layer) const in getLevel()
1168 const tcu::Texture2D& TestTexture2D::getTexture (void) const in getTexture()
1173 tcu::Texture2D& TestTexture2D::getTexture (void) in getTexture()
1178 de::MovePtr<TestTexture> TestTexture2D::copy(const tcu::TextureFormat format) const in copy()
[all …]
DvktPipelineImageSamplingInstance.cpp151 texture = MovePtr<TestTexture>(new TestTexture2D(format, size.x(), size.y())); in createTestTexture()
1191 const TestTexture2D* tex2D = dynamic_cast<const TestTexture2D*>(&testTexture); in getTexture2DView()
1213 const TestTexture2D* tex2D = dynamic_cast<const TestTexture2D*>(&testTexture); in getTexture2DArrayView()
/external/deqp/modules/gles31/functional/
Des31fFboSRGBWriteControlTests.cpp469 class TestTexture2D class
472TestTexture2D (Context& context, const deUint32 internalFormatValue, const deUint32 transferForma…
473 ~TestTexture2D (void);
492 TestTexture2D::TestTexture2D (Context& context, const deUint32 internalFormat, const deUint32 trans… in TestTexture2D() function in deqp::gles31::Functional::__anone73fa5f40111::TestTexture2D
521 TestTexture2D::~TestTexture2D (void) in ~TestTexture2D()
526 int TestTexture2D::getTextureUnit (void) const in getTextureUnit()
531 deUint32 TestTexture2D::getHandle (void) const in getHandle()
536 void TestTexture2D::bind (const int textureUnit) in bind()
543 void TestTexture2D::unbind (void) const in unbind()
797 typedef de::SharedPtr<TestTexture2D> TextureSp;
[all …]
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureCompressedFormatTests.cpp91 …, m_texture (TestTexture2DSp(new pipeline::TestTexture2D(m_compressedFormat, testParameters.wid… in Compressed2DTestInstance()
100 const pipeline::TestTexture2D& texture = m_renderer.get2DTexture(0); in iterate()
DvktTextureTestUtil.hpp120 typedef de::SharedPtr<pipeline::TestTexture2D> TestTexture2DSp;
195 const pipeline::TestTexture2D& get2DTexture (int textureIndex) const;
DvktTextureSwizzleTests.cpp123 … ? new pipeline::TestTexture2D(m_compressedFormat, testParameters.width, testParameters.height) in Swizzle2DTestInstance()
124 : new pipeline::TestTexture2D(m_format, testParameters.width, testParameters.height))) in Swizzle2DTestInstance()
133 const pipeline::TestTexture2D& texture = m_renderer.get2DTexture(0); in iterate()
DvktTextureFilteringAnisotropyTests.cpp107 …TestTexture2DSp texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(VK_FORMAT_R… in iterate()
DvktTextureTestUtil.cpp873 const pipeline::TestTexture2D& TextureRenderer::get2DTexture (int textureIndex) const in get2DTexture()
878 …return dynamic_cast<const pipeline::TestTexture2D&>(m_textureBindings[textureIndex]->getTestTextur… in get2DTexture()
1520 …texture = TestTexture2DSp(new pipeline::TestTexture2D(tcu::TextureFormat(tcu::TextureFormat::RGBA,… in loadTexture2D()
1544 …texture = TestTexture2DSp(new pipeline::TestTexture2D(commonFormat, level.getWidth(), level.getHei… in loadTexture2D()
DvktTextureShadowTests.cpp242 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DShadowTestInstance()
322 …const pipeline::TestTexture2D& texture = m_renderer.get2DTexture(m_cases[m_caseNdx].textureIndex… in iterate()
DvktTextureFilteringTests.cpp141 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DFilteringTestInstance()
143 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DFilteringTestInstance()
217 const pipeline::TestTexture2D& texture = m_renderer.get2DTexture(m_cases[m_caseNdx].textureIndex); in iterate()
DvktTextureMipmapTests.cpp174 …m_texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.format), … in Texture2DMipmapTestInstance()
960 …m_texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(format), m_texWidth, m_tex… in Texture2DLodControlTestInstance()