Remove extraneous glTextureParameteri logging

This commit is contained in:
Ryan Huffman 2017-04-25 16:52:34 -07:00 committed by Atlante45
parent f5bb42b19f
commit 4d48cb2e80

View file

@ -93,7 +93,6 @@ void GL45ResourceTexture::copyMipsFromTexture() {
void GL45ResourceTexture::syncSampler() const {
Parent::syncSampler();
qDebug() << "glTextureParameteri " << QString::fromStdString(_source) << _populatedMip << _populatedMip - _allocatedMip;
glTextureParameteri(_id, GL_TEXTURE_BASE_LEVEL, _populatedMip - _allocatedMip);
}