Lines Matching refs:m_texture
113 glu::Texture2D* m_texture; member in deqp::gles2::Functional::Texture2DMipmapCase
141 , m_texture (DE_NULL) in Texture2DMipmapCase()
161 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
174 m_texture->getRefTexture().allocLevel(levelNdx); in init()
175 tcu::clear(m_texture->getRefTexture().getLevel(levelNdx), tcu::RGBA(color).toVec()); in init()
181 delete m_texture; in deinit()
182 m_texture = DE_NULL; in deinit()
253 const tcu::Texture2D& refTexture = m_texture->getRefTexture(); in iterate()
282 …sampleParams.samplerType = glu::TextureTestUtil::getSamplerType(m_texture->getRefTexture().getForm… in iterate()
287 m_texture->upload(); in iterate()
290 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
397 m_texture->getRefTexture(), &texCoord[0], sampleParams, in iterate()
465 glu::TextureCube* m_texture; member in deqp::gles2::Functional::TextureCubeMipmapCase
491 , m_texture (DE_NULL) in TextureCubeMipmapCase()
511 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_size); in init()
537 m_texture->getRefTexture().allocLevel((tcu::CubeFace)faceNdx, levelNdx); in init()
538 …tcu::clear(m_texture->getRefTexture().getLevelFace(levelNdx, (tcu::CubeFace)faceNdx), tcu::RGBA(co… in init()
545 delete m_texture; in deinit()
546 m_texture = DE_NULL; in deinit()
585 const int texWidth = m_texture->getRefTexture().getSize(); in iterate()
586 const int texHeight = m_texture->getRefTexture().getSize(); in iterate()
612 m_texture->upload(); in iterate()
615 gl.bindTexture (GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
723 sampleTexture(idealDst, m_texture->getRefTexture(), &texCoord[0], params); in iterate()
730 m_texture->getRefTexture(), &texCoord[0], params, in iterate()
783 glu::Texture2D* m_texture; member in deqp::gles2::Functional::Texture2DGenMipmapCase
795 , m_texture (DE_NULL) in Texture2DGenMipmapCase()
807 DE_ASSERT(!m_texture); in init()
808 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
813 delete m_texture; in deinit()
814 m_texture = DE_NULL; in deinit()
830 …xtureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_texture->getRefTexture().getWidth(), m_textu… in iterate()
835 m_texture->getRefTexture().allocLevel(0); in iterate()
836 …tcu::fillWithGrid(m_texture->getRefTexture().getLevel(0), 8, tcu::Vec4(1.0f, 0.5f, 0.0f, 0.5f), tc… in iterate()
839 m_texture->upload(); in iterate()
841 gl.bindTexture (GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
883 …mpareResult = compareGenMipmapResult(m_testCtx.getLog(), resultTexture, m_texture->getRefTexture()… in iterate()
917 glu::TextureCube* m_texture; member in deqp::gles2::Functional::TextureCubeGenMipmapCase
928 , m_texture (DE_NULL) in TextureCubeGenMipmapCase()
943 DE_ASSERT(!m_texture); in init()
944 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_size); in init()
949 delete m_texture; in deinit()
950 m_texture = DE_NULL; in deinit()
984 m_texture->getRefTexture().allocLevel((tcu::CubeFace)face, 0); in iterate()
985 fillWithGrid(m_texture->getRefTexture().getLevelFace(0, (tcu::CubeFace)face), 8, ca, cb); in iterate()
989 m_texture->upload(); in iterate()
991 gl.bindTexture (GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in iterate()
1036 …mpareResult = compareGenMipmapResult(m_testCtx.getLog(), resultTexture, m_texture->getRefTexture()… in iterate()