mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 02:48:25 -05:00
Update Ghoul version to accommodate public API bool parameter changes
This commit is contained in:
+4
-2
@@ -90,8 +90,10 @@ bool Scene::initialize() {
|
||||
"fboPassProgram",
|
||||
"${SHADERS}/fboPass_vs.glsl",
|
||||
"${SHADERS}/fboPass_fs.glsl");
|
||||
if (!tmpProgram) return false;
|
||||
tmpProgram->setIgnoreSubroutineUniformLocationError(true);
|
||||
if (!tmpProgram)
|
||||
return false;
|
||||
|
||||
tmpProgram->setIgnoreSubroutineUniformLocationError(ProgramObject::IgnoreError::Yes);
|
||||
OsEng.configurationManager().setValue("fboPassProgram", tmpProgram.get());
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user