HomeSort by relevance Sort by last modified time
    Searched refs:InfoLog (Results 1 - 21 of 21) sorted by null

  /external/deqp/executor/
xeBatchResult.hpp 53 class InfoLog
56 InfoLog (void);
64 InfoLog (const InfoLog& other);
65 InfoLog& operator= (const InfoLog& other);
xeBatchResult.cpp 34 // InfoLog
36 InfoLog::InfoLog (void)
40 void InfoLog::append (const deUint8* bytes, size_t numBytes)
xeBatchExecutor.hpp 70 BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog);
115 InfoLog* m_infoLog;
xeTestCaseResult.hpp 71 class InfoLog;
302 class InfoLog : public Item
305 InfoLog (void) : Item(TYPE_INFOLOG) {}
306 ~InfoLog (void) {}
332 InfoLog infoLog;
343 InfoLog linkInfoLog;
453 InfoLog infoLog;
xeBatchExecutor.cpp 157 BatchExecutor::BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog)
164 , m_infoLog (infoLog)
xeTestLogWriter.cpp 313 writeResultItem(shader.infoLog, dst);
343 dst << Writer::BeginElement("InfoLog") << static_cast<const ri::InfoLog&>(item).log << Writer::EndElement;
372 writeResultItem(compileInfo.infoLog, dst);
xeTestResultParser.cpp 119 { 0xff265913, "InfoLog", ri::TYPE_INFOLOG },
580 item = &static_cast<ri::Shader*>(parentItem)->infoLog;
582 item = &static_cast<ri::CompileInfo*>(parentItem)->infoLog;
584 throw TestResultParseError("Unexpected <InfoLog>");
794 m_xmlParser.appendDataStr(static_cast<ri::InfoLog*>(curItem)->log);
  /external/mesa3d/src/glsl/
main.cpp 197 if (shader->InfoLog)
198 ralloc_free(shader->InfoLog);
200 shader->InfoLog = state->info_log;
232 whole_program->InfoLog = ralloc_strdup(whole_program, "");
268 printf("Info log for %s:\n%s\n", argv[optind], shader->InfoLog);
278 if (strlen(whole_program->InfoLog) > 0)
279 printf("Info log for linking:\n%s\n", whole_program->InfoLog);
linker.cpp 180 ralloc_strcat(&prog->InfoLog, "error: ");
182 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
194 ralloc_strcat(&prog->InfoLog, "error: ");
196 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap);
    [all...]
  /external/mesa3d/src/mesa/program/
sampler.cpp 84 ralloc_strcat(&shader_program->InfoLog,
ir_to_mesa.cpp     [all...]
prog_print.c 1125 if (shader->InfoLog) {
1126 fputs(shader->InfoLog, f);
    [all...]
  /external/mesa3d/src/mesa/main/
shaderobj.c 255 prog->InfoLog = ralloc_strdup(prog, "");
296 assert(shProg->InfoLog != NULL);
297 ralloc_free(shProg->InfoLog);
298 shProg->InfoLog = ralloc_strdup(shProg, "");
shaderapi.c 497 *params = shProg->InfoLog ? strlen(shProg->InfoLog) + 1 : 0;
632 *params = shader->InfoLog ? strlen(shader->InfoLog) + 1 : 0;
646 GLsizei *length, GLchar *infoLog)
654 _mesa_copy_string(infoLog, bufSize, length, shProg->InfoLog);
660 GLsizei *length, GLchar *infoLog)
667 _mesa_copy_string(infoLog, bufSize, length, sh->InfoLog);
    [all...]
mtypes.h     [all...]
ff_fragment_shader.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_program.c 119 ralloc_strcat(&shader->InfoLog, msg);
brw_vec4_emit.cpp 1086 ralloc_strcat(&prog->InfoLog, v.fail_msg);
brw_fs.cpp     [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 105 << Option<InfoLogFile> ("i", "info", "Output info log filename.", "InfoLog.txt")
450 void writeInfoLog (const xe::InfoLog& log, const char* filename)
600 xe::InfoLog infoLog;
609 xe::BatchExecutor executor(cmdLine.targetCfg, commLink.get(), &root, testSet, &batchResult, &infoLog);
629 writeInfoLog(infoLog, cmdLine.infoFile.c_str());
647 writeInfoLog(infoLog, cmdLine.infoFile.c_str());
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 447 ralloc_vasprintf_append(&prog->InfoLog, fmt, args);
    [all...]

Completed in 130 milliseconds