remove extra logging

This commit is contained in:
Vadim Lopatin 2016-03-22 13:11:01 +03:00
parent a8fb74602e
commit 9f37ee5257
1 changed files with 2 additions and 2 deletions

View File

@ -1115,7 +1115,7 @@ class GLVertexBuffer : VertexBuffer {
checkgl!glVertexAttribPointer(loc, _format[i].size, GL_FLOAT, GL_FALSE, _format.vertexSize, cast(char*)(offset));
checkgl!glEnableVertexAttribArray(loc);
} else {
Log.d("Attribute location not found for ", _format[i].type);
//Log.d("Attribute location not found for ", _format[i].type);
}
offset += _format[i].byteSize;
}
@ -1208,7 +1208,7 @@ class DummyVertexBuffer : VertexBuffer {
checkgl!glVertexAttribPointer(loc, _format[i].size, GL_FLOAT, GL_FALSE, _format.vertexSize, cast(char*)(offset));
checkgl!glEnableVertexAttribArray(loc);
} else {
Log.d("Attribute location not found for ", _format[i].type);
//Log.d("Attribute location not found for ", _format[i].type);
}
offset += _format[i].byteSize;
}