• Home
  • Raw
  • Download

Lines Matching refs:infoLog

884     LoadBinaryTask(ProgramD3D *program, gl::BinaryInputStream *stream, gl::InfoLog &infoLog)  in LoadBinaryTask()  argument
924 gl::InfoLog &infoLog) in LoadBinaryLinkEvent() argument
925 : mTask(std::make_shared<ProgramD3D::LoadBinaryTask>(program, stream, infoLog)), in LoadBinaryLinkEvent()
953 gl::InfoLog &infoLog) in load() argument
967 infoLog << "Invalid program binary, device configuration has changed."; in load()
974 infoLog << "Mismatched compilation flags."; in load()
1037 infoLog << "Invalid program binary."; in load()
1055 infoLog << "Invalid program binary."; in load()
1077 infoLog << "Invalid program binary."; in load()
1104 infoLog << "Invalid program binary."; in load()
1163 infoLog); in load()
1168 gl::InfoLog &infoLog) in loadBinaryShaderExecutables() argument
1196 infoLog << "Could not create vertex shader."; in loadBinaryShaderExecutables()
1231 infoLog << "Could not create pixel shader."; in loadBinaryShaderExecutables()
1259 infoLog << "Could not create geometry shader."; in loadBinaryShaderExecutables()
1293 infoLog << "Could not create compute shader."; in loadBinaryShaderExecutables()
1541 gl::InfoLog *infoLog) in getPixelExecutableForCachedOutputLayout() argument
1557 gl::InfoLog *currentInfoLog = infoLog ? infoLog : &tempInfoLog; in getPixelExecutableForCachedOutputLayout()
1570 else if (!infoLog) in getPixelExecutableForCachedOutputLayout()
1583 gl::InfoLog *infoLog) in getVertexExecutableForCachedInputLayout() argument
1600 gl::InfoLog *currentInfoLog = infoLog ? infoLog : &tempInfoLog; in getVertexExecutableForCachedInputLayout()
1613 else if (!infoLog) in getVertexExecutableForCachedInputLayout()
1627 gl::InfoLog *infoLog) in getGeometryExecutableForPrimitiveType() argument
1657 gl::InfoLog *currentInfoLog = infoLog ? infoLog : &tempInfoLog; in getGeometryExecutableForPrimitiveType()
1665 if (!infoLog && result == angle::Result::Stop) in getGeometryExecutableForPrimitiveType()
1789 GraphicsProgramLinkEvent(gl::InfoLog &infoLog, in GraphicsProgramLinkEvent() argument
1797 : mInfoLog(infoLog), in GraphicsProgramLinkEvent()
1905 ComputeProgramLinkEvent(gl::InfoLog &infoLog, in ComputeProgramLinkEvent() argument
1908 : mInfoLog(infoLog), mComputeTask(computeTask), mWaitEvent(event) in ComputeProgramLinkEvent()
1933 gl::InfoLog &infoLog) in compileProgramExecutables() argument
1953 return std::make_unique<GraphicsProgramLinkEvent>(infoLog, context->getWorkerThreadPool(), in compileProgramExecutables()
1959 gl::InfoLog &infoLog) in compileComputeExecutable() argument
1986 return std::make_unique<ComputeProgramLinkEvent>(infoLog, computeTask, waitableEvent); in compileComputeExecutable()
1992 gl::InfoLog *infoLog) in getComputeExecutableForImage2DBindLayout() argument
2009 gl::InfoLog *currentInfoLog = infoLog ? infoLog : &tempInfoLog; in getComputeExecutableForImage2DBindLayout()
2022 else if (!infoLog) in getComputeExecutableForImage2DBindLayout()
2034 gl::InfoLog &infoLog, in link() argument
2064 return compileComputeExecutable(context, infoLog); in link()
2110 infoLog << "The current renderer doesn't support gl_FrontFacing"; in link()
2150 return compileProgramExecutables(context, infoLog); in link()