3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 15:55:26 +02:00

More merge comments

This commit is contained in:
Bradley Austin Davis 2015-08-05 13:53:19 -07:00
parent 649b9d6ce9
commit 89cc2ccfa5
2 changed files with 2 additions and 3 deletions
libraries/gpu/src/gpu
tests/render-utils/src

View file

@ -147,8 +147,8 @@ GLBackend::GLShader* compileShader(const Shader& shader) {
char* temp = new char[infoLength] ;
glGetShaderInfoLog(glshader, infoLength, NULL, temp);
qWarning() << "GLShader::compileShader - failed to compile the gl shader object:";
qWarning() << temp;
qCWarning(gpulogging) << "GLShader::compileShader - failed to compile the gl shader object:";
qCWarning(gpulogging) << temp;
/*
filestream.open("debugshader.glsl.info.txt");

View file

@ -155,7 +155,6 @@ public:
makeCurrent();
// setFramePosition(QPoint(-1000, 0));
resize(QSize(800, 600));
}