Browse Subversion Repository
Diff of /trunk/src/js/jgame.js
Parent Directory
| Revision Log
| Patch
| 1842 |
return canvas; |
return canvas; |
| 1843 |
}; |
}; |
| 1844 |
BufferedRenderer.prototype.createSprite = function (area, distArea) { |
BufferedRenderer.prototype.createSprite = function (area, distArea) { |
| 1845 |
|
if(!area) { |
| 1846 |
|
area = new Area(0, 0, this.size.width, this.size.height); |
| 1847 |
|
} |
| 1848 |
|
if(!distArea) { |
| 1849 |
|
distArea = new Area(0, 0, area.width, area.height); |
| 1850 |
|
} |
| 1851 |
return new Sprite(area.width, area.height, this.createImage(area, distArea)); |
return new Sprite(area.width, area.height, this.createImage(area, distArea)); |
| 1852 |
}; |
}; |
| 1853 |
BufferedRenderer.prototype.applyFilter = function (c, size) { |
BufferedRenderer.prototype.applyFilter = function (c, size) { |
|
|
Legend:
| Removed from v.28 |
|
| changed lines |
| |
Added in v.30 |
|
|
| |