Lines Matching defs:m_context

429 	Context&							m_context;
455 : m_context (context)
478 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
494 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
564 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
600 Context& m_context;
611 : m_context (context)
616 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
617 tcu::TestLog& log = m_context.getTestContext().getLog();
622 std::string ver(glu::isContextTypeGLCore(m_context.getRenderContext().getType()) ? "#version 450\n" : "#version 310 es\n");
635 m_program = de::MovePtr<glu::ShaderProgram>(new glu::ShaderProgram(m_context.getRenderContext(), glu::makeVtxFragSources(m_shaderVertex, m_shaderFragment)));
794 source << (glu::isContextTypeGLCore(m_context.getRenderContext().getType()) ? "#version 450\n" : "#version 310 es\n")
953 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
956 if ( (glu::getInternalFormat(m_internalFormat) == GL_SRGB8_ALPHA8) && !m_context.getContextInfo().isExtensionSupported("GL_EXT_texture_sRGB_decode") )
961 if ( (glu::getInternalFormat(m_internalFormat) == GL_SRG8_EXT) && !(m_context.getContextInfo().isExtensionSupported("GL_EXT_texture_sRGB_RG8")) )
966 if ( (glu::getInternalFormat(m_internalFormat) == GL_SR8_EXT) && !(m_context.getContextInfo().isExtensionSupported("GL_EXT_texture_sRGB_R8")) )
971 m_framebuffer = de::MovePtr<glu::Framebuffer>(new glu::Framebuffer(m_context.getRenderContext()));
973 if (glu::isContextTypeGLCore(m_context.getRenderContext().getType()))
981 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
991 if (glu::isContextTypeGLCore(m_context.getRenderContext().getType()))
1093 SRGBTestTexture* texture = new SRGBTestTexture(m_context, targetType, m_internalFormat, width, height, color, wrapS, wrapT, minFilter, magFilter, decoding);
1103 SRGBTestSampler *sampler = new SRGBTestSampler(m_context, wrapS, wrapT, minFilter, magFilter, decoding);
1118 SRGBTestProgram* shaderProgram = new SRGBTestProgram(m_context, m_shaderParametersList[shaderParamsIdx]);
1151 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1152 int width = m_context.getRenderContext().getRenderTarget().getWidth();
1153 int height = m_context.getRenderContext().getRenderTarget().getHeight();
1163 glu::readPixels(m_context.getRenderContext(), 0, 0, m_textureResultList[renderBufferIdx].getAccess());
1172 tcu::TestLog& log = m_context.getTestContext().getLog();
1174 int width = m_context.getRenderContext().getRenderTarget().getWidth();
1175 int height = m_context.getRenderContext().getRenderTarget().getHeight();
1227 tcu::TestLog& log = m_context.getTestContext().getLog();
1265 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1312 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1313 int width = m_context.getRenderContext().getRenderTarget().getWidth();
1314 int height = m_context.getRenderContext().getRenderTarget().getHeight();
1353 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1425 tcu::TestLog& log = m_context.getTestContext().getLog();
1497 tcu::TestLog& log = m_context.getTestContext().getLog();
1568 tcu::TestLog& log = m_context.getTestContext().getLog();
1648 tcu::TestLog& log = m_context.getTestContext().getLog();
1686 const glw::Functions& gl = m_context.getRenderContext().getFunctions();
1797 tcu::TestLog& log = m_context.getTestContext().getLog();
1869 tcu::TestLog& log = m_context.getTestContext().getLog();
1947 tcu::TestLog& log = m_context.getTestContext().getLog();
2002 testGroup->addChild(new TextureDecodeSkippedCase (m_context, "skipped", "testing for sRGB color values with sRGB texture decoding skipped", testGroupConfigList[idx].internalFormat));
2003 testGroup->addChild(new TextureDecodeEnabledCase (m_context, "enabled", "testing for linear color values with sRGB texture decoding enabled", testGroupConfigList[idx].internalFormat));
2004 testGroup->addChild(new TexelFetchDecodeSkippedcase (m_context, "texel_fetch", "testing for linear color values with sRGB texture decoding skipped", testGroupConfigList[idx].internalFormat));
2005 testGroup->addChild(new GPUConversionDecodeEnabledCase (m_context, "conversion_gpu", "sampling linear values and performing conversion on the gpu", testGroupConfigList[idx].internalFormat));
2006 testGroup->addChild(new DecodeToggledCase (m_context, "toggled", "toggle the sRGB decoding between draw calls", testGroupConfigList[idx].internalFormat));
2007 testGroup->addChild(new DecodeMultipleTexturesCase (m_context, "multiple_textures","upload multiple textures with different sRGB decode values and sample",testGroupConfigList[idx].internalFormat));
2008 testGroup->addChild(new DecodeSamplerCase (m_context, "using_sampler", "testing that sampler object takes priority over texture state", testGroupConfigList[idx].internalFormat));