Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 4, 2013
1 parent 090a3e3 commit 7f66d94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions doomsday/client/src/ui/clientwindow.cpp
Expand Up @@ -554,8 +554,6 @@ void ClientWindow::canvasGLDraw(Canvas &canvas)
d->updateRootSize();
}

qDebug() << "ClientWindow drawing the content";

d->contentXf.drawTransformed();

// Finish GL drawing and swap it on to the screen. Blocks until buffers
Expand Down
4 changes: 2 additions & 2 deletions doomsday/client/src/ui/widgets/compositorwidget.cpp
Expand Up @@ -75,10 +75,10 @@ DENG_GUI_PIMPL(CompositorWidget)

Buffer *buf = buffers[nextBufIndex];
Vector2ui const size = GLState::top().target().size();
qDebug() << "compositor" << nextBufIndex << "should be" << size.asText();
//qDebug() << "compositor" << nextBufIndex << "should be" << size.asText();
if(buf->texture.size() != size)
{
qDebug() << "buffer texture defined" << size.asText();
//qDebug() << "buffer texture defined" << size.asText();
buf->texture.setUndefinedImage(size, Image::RGBA_8888);
buf->offscreen.reset(new GLTarget(buf->texture));
}
Expand Down

0 comments on commit 7f66d94

Please sign in to comment.