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

1 2

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
HLSLCompiler.h 10 class InfoLog;
28 ShaderBlob *compileToBinary(gl::InfoLog &infoLog, const char *hlsl, const char *profile,
HLSLCompiler.cpp 68 ShaderBlob *HLSLCompiler::compileToBinary(gl::InfoLog &infoLog, const char *hlsl, const char *profile,
90 infoLog.appendSanitized(message);
108 infoLog.append("Warning: D3D shader compilation failed with ");
109 infoLog.append(flagNames[i]);
110 infoLog.append(" flags.");
113 infoLog.append(" Retrying with ");
114 infoLog.append(flagNames[i + 1]);
115 infoLog.append(".\n");
  /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, int 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;
292 class InfoLog : public Item
295 InfoLog (void) : Item(TYPE_INFOLOG) {}
296 ~InfoLog (void) {}
322 InfoLog infoLog;
333 InfoLog linkInfoLog;
443 InfoLog infoLog;
  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.h 48 class InfoLog
51 InfoLog();
52 ~InfoLog();
55 void getLog(GLsizei bufSize, GLsizei *length, char *infoLog);
61 DISALLOW_COPY_AND_ASSIGN(InfoLog);
84 void getInfoLog(GLsizei bufSize, GLsizei *length, char *infoLog);
144 InfoLog mInfoLog;
ProgramBinary.h 42 class InfoLog;
132 bool load(InfoLog &infoLog, const void *binary, GLsizei length);
136 bool link(InfoLog &infoLog, const AttributeBindings &attributeBindings, FragmentShader *fragmentShader, VertexShader *vertexShader,
163 void validate(InfoLog &infoLog);
164 bool validateSamplers(InfoLog *infoLog);
180 bool linkVaryings(InfoLog &infoLog, FragmentShader *fragmentShader, VertexShader *vertexShader)
    [all...]
DynamicHLSL.h 23 class InfoLog;
42 int packVaryings(InfoLog &infoLog, VaryingPacking packing, FragmentShader *fragmentShader,
45 bool generateShaderLinkHLSL(InfoLog &infoLog, int registers, const VaryingPacking packing,
Program.cpp 27 InfoLog::InfoLog() : mInfoLog(NULL)
31 InfoLog::~InfoLog()
37 int InfoLog::getLength() const
49 void InfoLog::getLog(GLsizei bufSize, GLsizei *length, char *infoLog)
58 memcpy(infoLog, mInfoLog, index);
61 infoLog[index] = '\0';
73 void InfoLog::appendSanitized(const char *message
    [all...]
ProgramBinary.cpp 234 InfoLog tempInfoLog;
982 bool ProgramBinary::linkVaryings(InfoLog &infoLog, FragmentShader *fragmentShader, VertexShader *vertexShader)
997 if (!linkValidateVariables(infoLog, output->name, *input, *output))
1011 infoLog.append("Fragment varying %s does not match any vertex varying", input->name.c_str());
1019 bool ProgramBinary::load(InfoLog &infoLog, const void *binary, GLsizei length)
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/src/mesa/program/
sampler.cpp 84 ralloc_strcat(&shader_program->InfoLog,
  /external/mesa3d/src/mesa/program/
sampler.cpp 84 ralloc_strcat(&shader_program->InfoLog,
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Renderer.h 29 class InfoLog;
237 virtual ShaderExecutable *compileToExecutable(gl::InfoLog &infoLog, const char *shaderHLSL, rx::ShaderType type,
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 393 static void writeInfoLog (const xe::InfoLog& log, const char* filename)
459 xe::InfoLog infoLog;
468 xe::BatchExecutor executor(cmdLine.targetCfg, commLink.get(), &root, testSet, &batchResult, &infoLog);
481 writeInfoLog(infoLog, cmdLine.infoFile.c_str());
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_program.c 119 ralloc_strcat(&shader->InfoLog, msg);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_program.c 119 ralloc_strcat(&shader->InfoLog, msg);

Completed in 263 milliseconds

1 2