Home
last modified time | relevance | path

Searched refs:InfoLog (Results 1 – 23 of 23) sorted by relevance

/external/deqp/executor/
DxeBatchResult.hpp53 class InfoLog class
56 InfoLog (void);
64 InfoLog (const InfoLog& other);
65 InfoLog& operator= (const InfoLog& other);
DxeTestCaseResult.hpp71 class InfoLog;
302 class InfoLog : public Item class
305 InfoLog (void) : Item(TYPE_INFOLOG) {} in InfoLog() function in xe::ri::InfoLog
306 ~InfoLog (void) {} in ~InfoLog()
332 InfoLog infoLog;
343 InfoLog linkInfoLog;
453 InfoLog infoLog;
DxeBatchResult.cpp36 InfoLog::InfoLog (void) in InfoLog() function in xe::InfoLog
40 void InfoLog::append (const deUint8* bytes, size_t numBytes) in append()
DxeBatchExecutor.hpp70 …ommLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog);
115 InfoLog* m_infoLog;
DxeBatchExecutor.cpp157 …commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog) in BatchExecutor()
DxeTestLogWriter.cpp343 …dst << Writer::BeginElement("InfoLog") << static_cast<const ri::InfoLog&>(item).log << Writer::End… in writeResultItem()
DxeTestResultParser.cpp794 m_xmlParser.appendDataStr(static_cast<ri::InfoLog*>(curItem)->log); in handleData()
/external/mesa3d/src/glsl/
Dmain.cpp197 if (shader->InfoLog) in compile_shader()
198 ralloc_free(shader->InfoLog); in compile_shader()
200 shader->InfoLog = state->info_log; in compile_shader()
232 whole_program->InfoLog = ralloc_strdup(whole_program, ""); in main()
268 printf("Info log for %s:\n%s\n", argv[optind], shader->InfoLog); in main()
278 if (strlen(whole_program->InfoLog) > 0) in main()
279 printf("Info log for linking:\n%s\n", whole_program->InfoLog); in main()
Dlinker.cpp180 ralloc_strcat(&prog->InfoLog, "error: "); in linker_error()
182 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap); in linker_error()
194 ralloc_strcat(&prog->InfoLog, "error: "); in linker_warning()
196 ralloc_vasprintf_append(&prog->InfoLog, fmt, ap); in linker_warning()
2401 ralloc_free(prog->InfoLog); in link_shaders()
2402 prog->InfoLog = ralloc_strdup(NULL, ""); in link_shaders()
/external/deqp/doc/
Dqpa_file_format.txt83 <InfoLog>[string]</InfoLog>
87 <InfoLog>[string]</InfoLog>
89 <InfoLog>[string]</InfoLog>
/external/mesa3d/src/mesa/main/
Dshaderobj.c255 prog->InfoLog = ralloc_strdup(prog, ""); in _mesa_init_shader_program()
296 assert(shProg->InfoLog != NULL); in _mesa_clear_shader_program_data()
297 ralloc_free(shProg->InfoLog); in _mesa_clear_shader_program_data()
298 shProg->InfoLog = ralloc_strdup(shProg, ""); in _mesa_clear_shader_program_data()
Dshaderapi.c497 *params = shProg->InfoLog ? strlen(shProg->InfoLog) + 1 : 0; in get_programiv()
632 *params = shader->InfoLog ? strlen(shader->InfoLog) + 1 : 0; in get_shaderiv()
654 _mesa_copy_string(infoLog, bufSize, length, shProg->InfoLog); in get_program_info_log()
667 _mesa_copy_string(infoLog, bufSize, length, sh->InfoLog); in get_shader_info_log()
738 sh->Name, sh->InfoLog); in compile_shader()
773 shProg->Name, shProg->InfoLog); in link_program()
1000 if (shProg->InfoLog) { in validate_program()
1001 ralloc_free(shProg->InfoLog); in validate_program()
1003 shProg->InfoLog = ralloc_strdup(shProg, errMsg); in validate_program()
1703 ralloc_strcat(&shProg->InfoLog, sh->InfoLog); in _mesa_CreateShaderProgramEXT()
Dmtypes.h2195 GLchar *InfoLog; member
2398 GLchar *InfoLog; member
Dff_fragment_shader.cpp1371 p.shader_program->InfoLog); in create_new_program()
/external/mesa3d/src/mesa/program/
Dsampler.cpp84 ralloc_strcat(&shader_program->InfoLog, in visit_leave()
Dir_to_mesa.cpp3098 shader->InfoLog = state->info_log; in _mesa_glsl_compile_shader()
3116 if (shader->InfoLog && shader->InfoLog[0] != 0) { in _mesa_glsl_compile_shader()
3118 printf("%s\n", shader->InfoLog); in _mesa_glsl_compile_shader()
3169 if (prog->InfoLog && prog->InfoLog[0] != 0) { in _mesa_glsl_link_shader()
3171 printf("%s\n", prog->InfoLog); in _mesa_glsl_link_shader()
Dprog_print.c1125 if (shader->InfoLog) { in _mesa_write_shader_to_file()
1126 fputs(shader->InfoLog, f); in _mesa_write_shader_to_file()
/external/deqp/doc/testlog-stylesheet/
Dtestlog.css70 pre.InfoLog
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program.c119 ralloc_strcat(&shader->InfoLog, msg); in shader_error()
Dbrw_vec4_emit.cpp1086 ralloc_strcat(&prog->InfoLog, v.fail_msg); in brw_vs_emit()
Dbrw_fs.cpp2095 ralloc_strcat(&prog->InfoLog, v.fail_msg); in brw_wm_fs_emit()
/external/deqp/executor/tools/
DxeCommandLineExecutor.cpp450 void writeInfoLog (const xe::InfoLog& log, const char* filename) in writeInfoLog()
600 xe::InfoLog infoLog; in runExecutor()
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp447 ralloc_vasprintf_append(&prog->InfoLog, fmt, args); in fail_link()