Lines Matching refs:fsSource
34 const char *fsSource, in CompileProgramInternal() argument
38 GLuint fs = CompileShader(GL_FRAGMENT_SHADER, fsSource); in CompileProgramInternal()
248 const char *fsSource, in CompileProgramWithTransformFeedback() argument
268 return CompileProgramInternal(vsSource, "", "", "", fsSource, preLink); in CompileProgramWithTransformFeedback()
271 GLuint CompileProgram(const char *vsSource, const char *fsSource) in CompileProgram() argument
273 return CompileProgramInternal(vsSource, "", "", "", fsSource, nullptr); in CompileProgram()
277 const char *fsSource, in CompileProgram() argument
280 return CompileProgramInternal(vsSource, "", "", "", fsSource, preLinkCallback); in CompileProgram()
283 GLuint CompileProgramWithGS(const char *vsSource, const char *gsSource, const char *fsSource) in CompileProgramWithGS() argument
285 return CompileProgramInternal(vsSource, "", "", gsSource, fsSource, nullptr); in CompileProgramWithGS()
291 const char *fsSource) in CompileProgramWithTESS() argument
293 return CompileProgramInternal(vsSource, tcsSource, tesSource, "", fsSource, nullptr); in CompileProgramWithTESS()
305 std::string fsSource; in CompileProgramFromFiles() local
306 if (!ReadEntireFile(fsPath, &fsSource)) in CompileProgramFromFiles()
312 return CompileProgram(vsSource.c_str(), fsSource.c_str()); in CompileProgramFromFiles()