mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Merge pull request #7716 from AndrewMeadows/fix-linux-build
fix linux build
This commit is contained in:
commit
58f489679e
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ bool compileShader(GLenum shaderDomain, const std::string& shaderSource, const s
|
||||||
GLuint glshader = glCreateShader(shaderDomain);
|
GLuint glshader = glCreateShader(shaderDomain);
|
||||||
if (!glshader) {
|
if (!glshader) {
|
||||||
qCDebug(gpulogging) << "GLShader::compileShader - failed to create the gl shader object";
|
qCDebug(gpulogging) << "GLShader::compileShader - failed to create the gl shader object";
|
||||||
return nullptr;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Assign the source
|
// Assign the source
|
||||||
|
|
Loading…
Reference in a new issue