• Home
  • Raw
  • Download

Lines Matching refs:m_texture

109 	glu::Texture2D*				m_texture;  member in deqp::gles3::Accuracy::Texture2DMipmapCase
137 , m_texture (DE_NULL) in Texture2DMipmapCase()
149 m_texture = new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
162 m_texture->getRefTexture().allocLevel(levelNdx); in init()
163 tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()); in init()
169 delete m_texture; in deinit()
170 m_texture = DE_NULL; in deinit()
245 const tcu::Texture2D& refTexture = m_texture->getRefTexture(); in iterate()
278 …sampleParams.samplerType = glu::TextureTestUtil::getSamplerType(m_texture->getRefTexture().getForm… in iterate()
284 m_texture->upload(); in iterate()
290 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
345 sampleTexture(idealDst, m_texture->getRefTexture(), &texCoord[0], sampleParams); in iterate()
404 glu::TextureCube* m_texture; member in deqp::gles3::Accuracy::TextureCubeMipmapCase
430 , m_texture (DE_NULL) in TextureCubeMipmapCase()
442 m_texture = new glu::TextureCube(m_renderCtx, m_format, m_dataType, m_size); in init()
468 m_texture->getRefTexture().allocLevel((tcu::CubeFace)faceNdx, levelNdx); in init()
469 …tcu::clear(m_texture->getRefTexture().getLevelFace(levelNdx, (tcu::CubeFace)faceNdx), tcu::RGBA(co… in init()
476 delete m_texture; in deinit()
477 m_texture = DE_NULL; in deinit()
518 int texWidth = m_texture->getRefTexture().getSize(); in iterate()
519 int texHeight = m_texture->getRefTexture().getSize(); in iterate()
545 m_texture->upload(); in iterate()
551 gl.bindTexture(GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
609 sampleTexture(idealDst, m_texture->getRefTexture(), &texCoord[0], params); in iterate()