Major low-level rendering rethink. There will be much follow-on cleanup.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1286 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-04-23 01:16:28 +00:00
parent 849eaec47b
commit cc6a9d00ef
18 changed files with 1596 additions and 1093 deletions
@@ -1,5 +1,5 @@
//
// $Id: ImageSprite.java,v 1.3 2002/04/17 15:52:49 mdb Exp $
// $Id: ImageSprite.java,v 1.4 2002/04/23 01:16:28 mdb Exp $
package com.threerings.media.sprite;
@@ -175,8 +175,10 @@ public class ImageSprite extends Sprite
updateRenderOffset();
updateRenderOrigin();
// now invalidate the dirtied region
invalidate(dirty);
// give the dirty rectangle to the region manager
if (_spritemgr != null) {
_spritemgr.getRegionManager().addDirtyRegion(dirty);
}
}
/**
@@ -252,14 +254,6 @@ public class ImageSprite extends Sprite
}
}
// documentation inherited
protected void invalidate (Rectangle r)
{
if (_frame != null) {
super.invalidate(r);
}
}
// documentation inherited
protected void toString (StringBuffer buf)
{