Home | History | Annotate | Download | only in functional

Lines Matching refs:m_texture

96 	glu::TextureCubeArray*				m_texture;
110 , m_texture (DE_NULL)
124 , m_texture (DE_NULL)
139 m_texture = m_dataType != GL_NONE
143 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat());
146 m_texture->getRefTexture().allocLevel(0);
147 tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueMax);
161 delete m_texture;
162 m_texture = DE_NULL;
182 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat());
186 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat());
200 m_texture->upload();
204 gl.bindTexture(GL_TEXTURE_CUBE_MAP_ARRAY, m_texture->getGLTexture());
219 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture(), &texCoord[0], renderParams);
238 return m_curLayerFace < m_texture->getRefTexture().getDepth() ? CONTINUE : STOP;
262 glu::TextureBuffer* m_texture;
271 , m_texture (DE_NULL)
296 m_texture = new glu::TextureBuffer(m_renderCtx, m_format, m_width * fmt.getPixelSize());
299 tcu::fillWithComponentGradients(m_texture->getRefTexture(), colorA, colorB);
304 delete m_texture;
305 m_texture = DE_NULL;
320 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat());
323 renderParams.samplerType = getFetchSamplerType(m_texture->getRefTexture().getFormat());
327 computeQuadTexCoord1D(texCoord, 0.0f, (float)(m_texture->getRefTexture().getWidth()));
337 m_texture->upload();
341 gl.bindTexture(GL_TEXTURE_BUFFER, m_texture->getGLTexture());
352 fetchTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture(), &texCoord[0], spec.lookupScale, spec.lookupBias);