Home | History | Annotate | Download | only in functional

Lines Matching refs:log

139 	// Query source, status & log.
286 void logShader (TestLog& log, glu::RenderContext& renderCtx, glu::Shader& shader)
291 log << TestLog::Shader(getLogShaderType(shader.getType()), info.source, info.compileOk, info.infoLog);
294 void logProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, ShaderAllocator& shaders)
296 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog());
303 logShader(log, renderCtx, shaders.get(shaderType));
306 log << TestLog::EndShaderProgram;
309 void logVertexFragmentProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, glu::Shader& vertShader, glu::Shader& fragShader)
313 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog());
315 logShader(log, renderCtx, vertShader);
316 logShader(log, renderCtx, fragShader);
318 log << TestLog::EndShaderProgram;
581 TestLog& log = m_testCtx.getLog();
586 log << TestLog::Message << "Fail, source was not replaced." << TestLog::EndMessage;
591 log << TestLog::Message << "Fail, invalid shader source." << TestLog::EndMessage;
598 TestLog& log = m_testCtx.getLog();
608 log << TestLog::Message << "Setting shader source." << TestLog::EndMessage;
613 log << TestLog::Message << "Replacing shader source." << TestLog::EndMessage;
701 TestLog& log = m_testCtx.getLog();
719 logVertexFragmentProgram(log, renderCtx, program, shader, supportShader);
721 logVertexFragmentProgram(log, renderCtx, program, supportShader, shader);
726 TestLog& log = m_testCtx.getLog();
740 log << TestLog::Message << "Compilation failed." << TestLog::EndMessage;
785 TestLog& log = m_testCtx.getLog();
797 logProgram(log, m_context.getRenderContext(), program, shaders);
802 TestLog& log = m_testCtx.getLog();
807 log << TestLog::Message << "Fail, link status may only change as a result of linking or loading a program binary." << TestLog::EndMessage;
813 log << TestLog::Message << "Fail, reported link time changed." << TestLog::EndMessage;
819 log << TestLog::Message << "Fail, program infolog changed." << TestLog::EndMessage;
826 TestLog& log = m_testCtx.getLog();
844 logProgram(log, renderCtx, program, shaders);
848 log << TestLog::Message << "Fail, couldn't link program." << TestLog::EndMessage;
891 TestLog& log = m_testCtx.getLog();
894 log << TestLog::Message << "Detaching " + std::string(getShaderTypeName(m_shaderType)) + " shader" << TestLog::EndMessage;
913 TestLog& log = m_testCtx.getLog();
916 log << TestLog::Message << "Reattaching " + std::string(getShaderTypeName(m_shaderType)) + " shader" << TestLog::EndMessage;
936 TestLog& log = m_testCtx.getLog();
939 log << TestLog::Message << "Deleting " + std::string(getShaderTypeName(m_shaderType)) + " shader" << TestLog::EndMessage;
959 TestLog& log = m_testCtx.getLog();
962 log << TestLog::Message << "Deleting and replacing " + std::string(getShaderTypeName(m_shaderType)) + " shader" << TestLog::EndMessage;
983 TestLog& log = m_testCtx.getLog();
986 log << TestLog::Message << "Recompiling " + std::string(getShaderTypeName(m_shaderType)) + " shader" << TestLog::EndMessage;
1006 TestLog& log = m_testCtx.getLog();
1009 log << TestLog::Message << "Replacing " + std::string(getShaderTypeName(m_shaderType)) + " shader source and recompiling" << TestLog::EndMessage;