Lines Matching refs:m_texture
126 glu::Texture2D* m_texture; member in deqp::gles3::Functional::TextureWrapCase
144 , m_texture (DE_NULL) in TextureWrapCase()
164 , m_texture (DE_NULL) in TextureWrapCase()
183 , m_texture (DE_NULL) in TextureWrapCase()
204 …m_texture = glu::Texture2D::create(m_renderCtx, m_renderCtxInfo, m_testCtx.getArchive(), (int)m_fi… in init()
205 m_width = m_texture->getRefTexture().getWidth(); in init()
206 m_height = m_texture->getRefTexture().getHeight(); in init()
226 m_texture = new glu::Texture2D(m_renderCtx, m_renderCtxInfo, 1, &compressedTexture); in init()
259 …m_texture = new glu::Texture2D(m_renderCtx, m_renderCtxInfo, 1, &compressedTexture, tcu::TexDecomp… in init()
266 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
269 m_texture->getRefTexture().allocLevel(0); in init()
270 …tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), tcu::Vec4(-0.5f, -0.5f, -0… in init()
272 m_texture->upload(); in init()
288 delete m_texture; in deinit()
289 m_texture = DE_NULL; in deinit()
301 const tcu::TextureFormat texFormat = m_texture->getRefTexture().getFormat(); in iterate()
309 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
322 refParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in iterate()
349 …const bool isOk = verifyTextureResult(m_testCtx, renderedFrame.getAccess(), m_texture->getRefTextu… in iterate()