• Home
  • Raw
  • Download

Lines Matching refs:m_texture

162 	glu::Texture2D*				m_texture;  member in deqp::gles3::Functional::Texture2DMipmapCase
190 , m_texture (DE_NULL) in Texture2DMipmapCase()
205 m_texture = new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
218 m_texture->getRefTexture().allocLevel(levelNdx); in init()
219 tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()); in init()
225 delete m_texture; in deinit()
226 m_texture = DE_NULL; in deinit()
297 const tcu::Texture2D& refTexture = m_texture->getRefTexture(); in iterate()
326 …sampleParams.samplerType = glu::TextureTestUtil::getSamplerType(m_texture->getRefTexture().getForm… in iterate()
331 m_texture->upload(); in iterate()
334 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
441 m_texture->getRefTexture(), &texCoord[0], sampleParams, in iterate()
509 glu::TextureCube* m_texture; member in deqp::gles3::Functional::TextureCubeMipmapCase
535 , m_texture (DE_NULL) in TextureCubeMipmapCase()
550 m_texture = new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_size); in init()
576 m_texture->getRefTexture().allocLevel((tcu::CubeFace)faceNdx, levelNdx); in init()
577 …tcu::clear(m_texture->getRefTexture().getLevelFace(levelNdx, (tcu::CubeFace)faceNdx), tcu::RGBA(co… in init()
584 delete m_texture; in deinit()
585 m_texture = DE_NULL; in deinit()
624 const int texWidth = m_texture->getRefTexture().getSize(); in iterate()
625 const int texHeight = m_texture->getRefTexture().getSize(); in iterate()
643 m_texture->upload(); in iterate()
646 gl.bindTexture (GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
753 sampleTexture(idealDst, m_texture->getRefTexture(), &texCoord[0], params); in iterate()
760 m_texture->getRefTexture(), &texCoord[0], params, in iterate()
813 glu::Texture2D* m_texture; member in deqp::gles3::Functional::Texture2DGenMipmapCase
825 , m_texture (DE_NULL) in Texture2DGenMipmapCase()
837 DE_ASSERT(!m_texture); in init()
838 m_texture = new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
843 delete m_texture; in deinit()
844 m_texture = DE_NULL; in deinit()
860 …xtureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_texture->getRefTexture().getWidth(), m_textu… in iterate()
865 m_texture->getRefTexture().allocLevel(0); in iterate()
866 …tcu::fillWithGrid(m_texture->getRefTexture().getLevel(0), 8, tcu::Vec4(1.0f, 0.5f, 0.0f, 0.5f), tc… in iterate()
869 m_texture->upload(); in iterate()
871 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
912 …mpareResult = compareGenMipmapResult(m_testCtx.getLog(), resultTexture, m_texture->getRefTexture()… in iterate()
946 glu::TextureCube* m_texture; member in deqp::gles3::Functional::TextureCubeGenMipmapCase
957 , m_texture (DE_NULL) in TextureCubeGenMipmapCase()
972 DE_ASSERT(!m_texture); in init()
973 m_texture = new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_size); in init()
978 delete m_texture; in deinit()
979 m_texture = DE_NULL; in deinit()
1013 m_texture->getRefTexture().allocLevel((tcu::CubeFace)face, 0); in iterate()
1014 fillWithGrid(m_texture->getRefTexture().getLevelFace(0, (tcu::CubeFace)face), 8, ca, cb); in iterate()
1018 m_texture->upload(); in iterate()
1020 gl.bindTexture (GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
1065 …mpareResult = compareGenMipmapResult(m_testCtx.getLog(), resultTexture, m_texture->getRefTexture()… in iterate()
1113 glu::Texture3D* m_texture; member in deqp::gles3::Functional::Texture3DMipmapCase
1128 , m_texture (DE_NULL) in Texture3DMipmapCase()
1149m_texture = new glu::Texture3D(m_context.getRenderContext(), m_internalFormat, m_width, m_height, … in init()
1160 m_texture->getRefTexture().allocLevel(levelNdx); in init()
1161 …tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()*cScale + cBias); in init()
1164 m_texture->upload(); in init()
1169 delete m_texture; in deinit()
1170 m_texture = DE_NULL; in deinit()
1246 const tcu::Texture3D& refTexture = m_texture->getRefTexture(); in iterate()
1278 gl.bindTexture (GL_TEXTURE_3D, m_texture->getGLTexture()); in iterate()
1387 m_texture->getRefTexture(), &texCoord[0], sampleParams, in iterate()
1442 glu::Texture2D* m_texture; member in deqp::gles3::Functional::Texture2DLodControlCase
1451 , m_texture (DE_NULL) in Texture2DLodControlCase()
1466 m_texture = new glu::Texture2D(m_context.getRenderContext(), format, m_texWidth, m_texHeight); in init()
1477 m_texture->getRefTexture().allocLevel(levelNdx); in init()
1478 tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()); in init()
1484 delete m_texture; in deinit()
1485 m_texture = DE_NULL; in deinit()
1498 const tcu::Texture2D& refTexture = m_texture->getRefTexture(); in iterate()
1516 m_texture->upload(); in iterate()
1519 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
1589 m_texture->getRefTexture(), &texCoord[0], sampleParams, in iterate()
1743 glu::TextureCube* m_texture; member in deqp::gles3::Functional::TextureCubeLodControlCase
1751 , m_texture (DE_NULL) in TextureCubeLodControlCase()
1766 m_texture = new glu::TextureCube(m_context.getRenderContext(), format, m_texSize); in init()
1790 m_texture->getRefTexture().allocLevel((tcu::CubeFace)faceNdx, levelNdx); in init()
1791 …tcu::clear(m_texture->getRefTexture().getLevelFace(levelNdx, (tcu::CubeFace)faceNdx), tcu::RGBA(co… in init()
1798 delete m_texture; in deinit()
1799 m_texture = DE_NULL; in deinit()
1810 const int texWidth = m_texture->getRefTexture().getSize(); in iterate()
1811 const int texHeight = m_texture->getRefTexture().getSize(); in iterate()
1824 m_texture->upload(); in iterate()
1827 gl.bindTexture (GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
1898 sampleTexture(idealDst, m_texture->getRefTexture(), &texCoord[0], params); in iterate()
1905 m_texture->getRefTexture(), &texCoord[0], params, in iterate()
2060 glu::Texture3D* m_texture; member in deqp::gles3::Functional::Texture3DLodControlCase
2070 , m_texture (DE_NULL) in Texture3DLodControlCase()
2089m_texture = new glu::Texture3D(m_context.getRenderContext(), format, m_texWidth, m_texHeight, m_te… in init()
2100 m_texture->getRefTexture().allocLevel(levelNdx); in init()
2101 …tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()*cScale + cBias); in init()
2104 m_texture->upload(); in init()
2109 delete m_texture; in deinit()
2110 m_texture = DE_NULL; in deinit()
2123 const tcu::Texture3D& refTexture = m_texture->getRefTexture(); in iterate()
2149 gl.bindTexture (GL_TEXTURE_3D, m_texture->getGLTexture()); in iterate()
2221 m_texture->getRefTexture(), &texCoord[0], sampleParams, in iterate()