1
0
Fork 0

Revert "BDGraphics.drawImageN(): limit source rectangle to source image"

This reverts commit 317d41122d.

Conflicts:
	ChangeLog
This commit is contained in:
hpi1 2014-08-03 10:31:39 +03:00
parent 7a28187c1e
commit 424e2882a2
2 changed files with 0 additions and 9 deletions

View File

@ -2,7 +2,6 @@
- Fix stream position when seamless angle change point is at clip boundary.
- Fix Mac OS X jni compilation
- Fix bd_seek() jumping outside of clip/playlist.
- Fix out of array bounds exception in some BD-J menus
2014-05-27: Version 0.6.0
- Improved BD-J support (Most BD-J discs are correctly played).

View File

@ -1037,14 +1037,6 @@ abstract class BDGraphicsBase extends Graphics2D implements ConstrainableGraphic
if (dw < 0) dw = bdImage.width;
if (dh < 0) dh = bdImage.height;
/* limit source rectangle width / height to source image */
if (sx + sw > bdImage.width) {
sw = bdImage.width - sx;
}
if (sy + sh > bdImage.height) {
sh = bdImage.height - sy;
}
int stride = bdImage.width;
int[] rgbArray = bdImage.getBdBackBuffer();
int bgColor = 0;