mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 09:48:27 +02:00
fix linux build
This commit is contained in:
parent
cbb76013c4
commit
a9cfb5bf16
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