Home | History | Annotate | Download | only in performance

Lines Matching refs:m_texture

515 	glu::Texture2D*			m_texture;
2151 , m_texture (DE_NULL)
2162 delete m_texture;
2163 m_texture = DE_NULL;
2172 DE_ASSERT(m_texture == DE_NULL);
2174 m_texture = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, TEXTURE_WIDTH, TEXTURE_HEIGHT);
2176 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat());
2178 m_texture->getRefTexture().allocLevel(0);
2179 tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), fmtInfo.valueMin, fmtInfo.valueMax);
2182 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture());
2187 m_texture->upload();