Report the block bounds and the view bounds when a block is reported as

having become visible during resolution.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2578 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-05-15 23:03:29 +00:00
parent 80aa40ac72
commit 16aaad3daf
@@ -1,5 +1,5 @@
//
// $Id: MisoScenePanel.java,v 1.29 2003/05/15 18:24:01 mdb Exp $
// $Id: MisoScenePanel.java,v 1.30 2003/05/15 23:03:29 mdb Exp $
package com.threerings.miso.client;
@@ -774,7 +774,9 @@ public class MisoScenePanel extends VirtualMediaPanel
Rectangle sbounds = block.getScreenBounds();
if (!_delayRepaint && sbounds != null && sbounds.intersects(_vbounds)) {
Log.warning("Block visible during resolution " + block + ".");
Log.warning("Block visible during resolution " + block +
" sbounds:" + StringUtil.toString(sbounds) +
" vbounds:" + StringUtil.toString(_vbounds) + ".");
// if we have yet further blocks to resolve, queue up a
// repaint now so that we get this data onscreen as quickly as
// possible