Lines Matching refs:m_texture
105 glu::Texture2D* m_texture; member in deqp::gles3::Functional::Texture2DFormatCase
117 , m_texture (DE_NULL) in Texture2DFormatCase()
130 , m_texture (DE_NULL) in Texture2DFormatCase()
158 m_texture = m_dataType != GL_NONE in init()
163 m_texture->getRefTexture().allocLevel(0); in init()
164 …tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueM… in init()
169 delete m_texture; in deinit()
170 m_texture = DE_NULL; in deinit()
185 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in iterate()
192 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in iterate()
210 m_texture->upload(); in iterate()
214 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
230 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in iterate()
268 glu::TextureCube* m_texture; member in deqp::gles3::Functional::TextureCubeFormatCase
283 , m_texture (DE_NULL) in TextureCubeFormatCase()
298 , m_texture (DE_NULL) in TextureCubeFormatCase()
329 m_texture = m_dataType != GL_NONE in init()
350 m_texture->getRefTexture().allocLevel((tcu::CubeFace)face, 0); in init()
351 …tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevelFace(0, (tcu::CubeFace)face), g… in init()
355 m_texture->upload(); in init()
364 delete m_texture; in deinit()
365 m_texture = DE_NULL; in deinit()
380 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in testFace()
382 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in testFace()
402 gl.bindTexture(GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in testFace()
417 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in testFace()
469 glu::Texture2DArray* m_texture; member in deqp::gles3::Functional::Texture2DArrayFormatCase
484 , m_texture (DE_NULL) in Texture2DArrayFormatCase()
499 , m_texture (DE_NULL) in Texture2DArrayFormatCase()
514 m_texture = m_dataType != GL_NONE in init()
518 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in init()
521 m_texture->getRefTexture().allocLevel(0); in init()
522 …tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueM… in init()
531 delete m_texture; in deinit()
532 m_texture = DE_NULL; in deinit()
547 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in testLayer()
549 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in testLayer()
560 m_texture->upload(); in testLayer()
564 gl.bindTexture(GL_TEXTURE_2D_ARRAY, m_texture->getGLTexture()); in testLayer()
579 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in testLayer()
595 return m_curLayer < m_texture->getRefTexture().getNumLayers() ? CONTINUE : STOP; in iterate()
626 glu::Texture3D* m_texture; member in deqp::gles3::Functional::Texture3DFormatCase
641 , m_texture (DE_NULL) in Texture3DFormatCase()
656 , m_texture (DE_NULL) in Texture3DFormatCase()
671 m_texture = m_dataType != GL_NONE in init()
675 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in init()
678 m_texture->getRefTexture().allocLevel(0); in init()
679 …tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueM… in init()
688 delete m_texture; in deinit()
689 m_texture = DE_NULL; in deinit()
704 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in testSlice()
707 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in testSlice()
718 m_texture->upload(); in testSlice()
722 gl.bindTexture(GL_TEXTURE_3D, m_texture->getGLTexture()); in testSlice()
737 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in testSlice()
753 return m_curSlice < m_texture->getRefTexture().getDepth() ? CONTINUE : STOP; in iterate()
789 glu::Texture2D* m_texture; member in deqp::gles3::Functional::Compressed2DFormatCase
809 , m_texture (DE_NULL) in Compressed2DFormatCase()
830 m_texture = new glu::Texture2D(m_renderCtx, m_renderCtxInfo, 1, &compressedTexture); in init()
835 delete m_texture; in deinit()
836 m_texture = DE_NULL; in deinit()
845 …ewport viewport (m_renderCtx.getRenderTarget(), m_texture->getRefTexture().getWidth(), m_textu… in iterate()
851 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in iterate()
853 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in iterate()
865 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
880 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in iterate()
927 glu::TextureCube* m_texture; member in deqp::gles3::Functional::CompressedCubeFormatCase
950 , m_texture (DE_NULL) in CompressedCubeFormatCase()
978 m_texture = new glu::TextureCube(m_renderCtx, m_renderCtxInfo, 1, &levels[0]); in init()
986 delete m_texture; in deinit()
987 m_texture = DE_NULL; in deinit()
996 …iewport viewport (m_renderCtx.getRenderTarget(), m_texture->getRefTexture().getSize(), m_textu… in testFace()
1002 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in testFace()
1004 renderParams.samplerType = getSamplerType(m_texture->getRefTexture().getFormat()); in testFace()
1019 gl.bindTexture(GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in testFace()
1033 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in testFace()
1078 glu::Texture2D* m_texture; member in deqp::gles3::Functional::Texture2DFileCase
1087 , m_texture (DE_NULL) in Texture2DFileCase()
1100 …m_texture = glu::Texture2D::create(m_renderCtx, m_renderCtxInfo, m_testCtx.getArchive(), (int)m_fi… in init()
1105 delete m_texture; in deinit()
1106 m_texture = DE_NULL; in deinit()
1115 …ewport viewport (m_renderCtx.getRenderTarget(), m_texture->getRefTexture().getWidth(), m_textu… in iterate()
1128 gl.bindTexture(GL_TEXTURE_2D, m_texture->getGLTexture()); in iterate()
1146 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in iterate()
1180 glu::TextureCube* m_texture; member in deqp::gles3::Functional::TextureCubeFileCase
1192 , m_texture (DE_NULL) in TextureCubeFileCase()
1208 …m_texture = glu::TextureCube::create(m_renderCtx, m_renderCtxInfo, m_testCtx.getArchive(), (int)m_… in init()
1216 delete m_texture; in deinit()
1217 m_texture = DE_NULL; in deinit()
1226 …iewport viewport (m_renderCtx.getRenderTarget(), m_texture->getRefTexture().getSize(), m_textu… in testFace()
1243 gl.bindTexture(GL_TEXTURE_CUBE_MAP, m_texture->getGLTexture()); in testFace()
1258 …Access(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture()… in testFace()