Remove gl error logging

This commit is contained in:
Ryan Huffman 2017-04-20 23:17:42 -07:00 committed by Atlante45
parent 4e58341631
commit 7cab70deba

View file

@ -259,9 +259,7 @@ void GLBackend::do_setResourceTexture(const Batch& batch, size_t paramOffset) {
glActiveTexture(GL_TEXTURE0 + slot);
glBindTexture(target, to);
if (CHECK_GL_ERROR()) {
qDebug() << "slot: " << slot << ", target: " << target << ", to: " << to;
}
(void) CHECK_GL_ERROR();
_resource._textures[slot] = resourceTexture;