Added support for obtaining the estimated memory usage of a Mirage.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2174 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-01-17 02:30:21 +00:00
parent 34144c86de
commit 6f7ad6a09f
4 changed files with 28 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: BufferedMirage.java,v 1.1 2003/01/13 22:49:46 mdb Exp $
// $Id: BufferedMirage.java,v 1.2 2003/01/17 02:30:21 mdb Exp $
package com.threerings.media.image;
@@ -40,6 +40,12 @@ public class BufferedMirage implements Mirage
return ImageUtil.hitTest(_image, x, y);
}
// documentation inherited from interface
public long getEstimatedMemoryUsage ()
{
return ImageUtil.getEstimatedMemoryUsage(_image.getRaster());
}
// documentation inherited from interface
public BufferedImage getSnapshot ()
{