Lines Matching defs:program
349 buildInfo->program.infoLog = glslangProgram.getInfoLog(); // \todo [2015-11-05 scygan] Include debug log?
350 buildInfo->program.linkOk = (linkRes != 0);
351 buildInfo->program.linkTimeUs = deGetMicroseconds()-linkStartTime;
354 if (buildInfo->program.linkOk)
360 return buildInfo->program.linkOk;
364 TCU_THROW(InternalError, "Can't compile empty program");
367 bool compileGlslToSpirV (const GlslSource& program, std::vector<deUint32>* dst, glu::ShaderProgramInfo* buildInfo)
369 return compileShaderToSpirV(program.sources, program.buildOptions, program.shaderLanguage, dst, buildInfo);
372 bool compileHlslToSpirV (const HlslSource& program, std::vector<deUint32>* dst, glu::ShaderProgramInfo* buildInfo)
374 return compileShaderToSpirV(program.sources, program.buildOptions, program.shaderLanguage, dst, buildInfo);