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

1 2

  /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/mesa/main/
pipelineobj.c 84 obj->InfoLog = NULL;
648 *params = (pipe->InfoLog && pipe->InfoLog[0] != '\0') ?
649 strlen(pipe->InfoLog) + 1 : 0;
721 pipe->InfoLog = ralloc_asprintf(pipe,
776 if (pipe->InfoLog != NULL)
777 ralloc_free(pipe->InfoLog);
779 pipe->InfoLog = NULL;
815 pipe->InfoLog =
839 pipe->InfoLog = ralloc_strdup(pipe, "Program lacks a vertex shader")
    [all...]
shaderobj.c 291 prog->data->InfoLog = ralloc_strdup(prog->data, "");
351 assert(shProg->data->InfoLog != NULL);
352 ralloc_free(shProg->data->InfoLog);
353 shProg->data->InfoLog = ralloc_strdup(shProg->data, "");
shaderapi.c 645 *params = (shProg->data->InfoLog && shProg->data->InfoLog[0] != '\0') ?
646 strlen(shProg->data->InfoLog) + 1 : 0;
908 *params = (shader->InfoLog && shader->InfoLog[0] != '\0') ?
909 strlen(shader->InfoLog) + 1 : 0;
923 GLsizei *length, GLchar *infoLog)
944 _mesa_copy_string(infoLog, bufSize, length, shProg->data->InfoLog);
950 GLsizei *length, GLchar *infoLog)
    [all...]
uniform_query.cpp     [all...]
mtypes.h     [all...]
  /external/mesa3d/src/compiler/glsl/
standalone_scaffolding.cpp 146 ralloc_free(shProg->data->InfoLog);
147 shProg->data->InfoLog = ralloc_strdup(shProg->data, "");
standalone.cpp 440 whole_program->data->InfoLog = ralloc_strdup(whole_program->data, "");
488 if (strlen(shader->InfoLog) > 0) {
492 printf("%s", shader->InfoLog);
548 if (strlen(whole_program->data->InfoLog) > 0) {
552 printf("%s", whole_program->data->InfoLog);
glsl_parser_extras.cpp     [all...]
linker.cpp 418 ralloc_strcat(&prog->data->InfoLog, "error: ");
420 ralloc_vasprintf_append(&prog->data->InfoLog, fmt, ap);
432 ralloc_strcat(&prog->data->InfoLog, "warning: ");
434 ralloc_vasprintf_append(&prog->data->InfoLog, fmt, ap);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cs.c 72 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str);
123 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str);
brw_gs.c 140 ralloc_strcat(&gp->program.sh.data->InfoLog, error_str);
brw_tes.c 128 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str);
brw_vs.c 230 ralloc_strcat(&vp->program.sh.data->InfoLog, error_str);
brw_tcs.c 253 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str);
brw_wm.c 198 ralloc_strcat(&fp->program.sh.data->InfoLog, error_str);
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 106 << Option<InfoLogFile> ("i", "info", "Output info log filename.", "InfoLog.txt")
451 void writeInfoLog (const xe::InfoLog& log, const char* filename)
601 xe::InfoLog infoLog;
610 xe::BatchExecutor executor(cmdLine.targetCfg, commLink.get(), &root, testSet, &batchResult, &infoLog);
630 writeInfoLog(infoLog, cmdLine.infoFile.c_str());
648 writeInfoLog(infoLog, cmdLine.infoFile.c_str());
  /external/mesa3d/src/mesa/program/
prog_print.c 990 if (shader->InfoLog) {
991 fputs(shader->InfoLog, f);
ir_to_mesa.cpp     [all...]

Completed in 870 milliseconds

1 2