Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/angle/src/libGLESv2/
DProgramBinary.h38 class InfoLog; variable
96 bool load(InfoLog &infoLog, const void *binary, GLsizei length);
100 …bool link(InfoLog &infoLog, const AttributeBindings &attributeBindings, FragmentShader *fragmentSh…
111 void validate(InfoLog &infoLog);
112 bool validateSamplers(InfoLog *infoLog);
125 int packVaryings(InfoLog &infoLog, const Varying *packing[][4], FragmentShader *fragmentShader);
126 bool linkVaryings(InfoLog &infoLog, int registers, const Varying *packing[][4],
130 …bool linkAttributes(InfoLog &infoLog, const AttributeBindings &attributeBindings, FragmentShader *…
132 …bool linkUniforms(InfoLog &infoLog, const sh::ActiveUniforms &vertexUniforms, const sh::ActiveUnif…
133 bool defineUniform(GLenum shader, const sh::Uniform &constant, InfoLog &infoLog);
DProgram.h48 class InfoLog
51 InfoLog();
52 ~InfoLog();
61 DISALLOW_COPY_AND_ASSIGN(InfoLog);
126 InfoLog mInfoLog;
DProgram.cpp27 InfoLog::InfoLog() : mInfoLog(NULL) in InfoLog() function in gl::InfoLog
31 InfoLog::~InfoLog() in ~InfoLog()
37 int InfoLog::getLength() const in getLength()
49 void InfoLog::getLog(GLsizei bufSize, GLsizei *length, char *infoLog) in getLog()
73 void InfoLog::appendSanitized(const char *message) in appendSanitized()
91 void InfoLog::append(const char *format, ...) in append()
126 void InfoLog::reset() in reset()
DProgramBinary.cpp1012 int ProgramBinary::packVaryings(InfoLog &infoLog, const Varying *packing[][4], FragmentShader *frag… in packVaryings()
1161 bool ProgramBinary::linkVaryings(InfoLog &infoLog, int registers, const Varying *packing[][4], in linkVaryings()
1618 bool ProgramBinary::load(InfoLog &infoLog, const void *binary, GLsizei length) in load()
1919 bool ProgramBinary::link(InfoLog &infoLog, const AttributeBindings &attributeBindings, FragmentShad… in link()
1997 bool ProgramBinary::linkAttributes(InfoLog &infoLog, const AttributeBindings &attributeBindings, Fr… in linkAttributes()
2068 bool ProgramBinary::linkUniforms(InfoLog &infoLog, const sh::ActiveUniforms &vertexUniforms, const … in linkUniforms()
2089 bool ProgramBinary::defineUniform(GLenum shader, const sh::Uniform &constant, InfoLog &infoLog) in defineUniform()
2482 void ProgramBinary::validate(InfoLog &infoLog) in validate()
2495 bool ProgramBinary::validateSamplers(InfoLog *infoLog) in validateSamplers()
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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
/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()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DRenderer.h40 class InfoLog; variable
216 …virtual ShaderExecutable *compileToExecutable(gl::InfoLog &infoLog, const char *shaderHLSL, rx::Sh…
238 …ShaderBlob *compileToBinary(gl::InfoLog &infoLog, const char *hlsl, const char *profile, UINT opti…
DRenderer.cpp77 ShaderBlob *Renderer::compileToBinary(gl::InfoLog &infoLog, const char *hlsl, const char *profile, … in compileToBinary()
DRenderer9.h173 …virtual ShaderExecutable *compileToExecutable(gl::InfoLog &infoLog, const char *shaderHLSL, rx::Sh…
DRenderer11.h158 …virtual ShaderExecutable *compileToExecutable(gl::InfoLog &infoLog, const char *shaderHLSL, rx::Sh…
/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/chromium_org/third_party/mesa/src/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/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program.c119 ralloc_strcat(&shader->InfoLog, msg); in shader_error()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_program.c119 ralloc_strcat(&shader->InfoLog, msg); in shader_error()

12