[libbluray-devel] Implement BDGraphicsConfiguration.getDefaultTransform()
hpi1
git at videolan.org
Tue Oct 7 11:38:25 CEST 2014
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Tue Oct 7 12:37:04 2014 +0300| [85874ec88cc81dd10ba3ac33f45da9b63c69e603] | committer: hpi1
Implement BDGraphicsConfiguration.getDefaultTransform()
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=85874ec88cc81dd10ba3ac33f45da9b63c69e603
---
src/libbluray/bdj/java-j2se/java/awt/BDGraphicsConfiguration.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/libbluray/bdj/java-j2se/java/awt/BDGraphicsConfiguration.java b/src/libbluray/bdj/java-j2se/java/awt/BDGraphicsConfiguration.java
index 3c1b1ba..5593df0 100644
--- a/src/libbluray/bdj/java-j2se/java/awt/BDGraphicsConfiguration.java
+++ b/src/libbluray/bdj/java-j2se/java/awt/BDGraphicsConfiguration.java
@@ -31,8 +31,8 @@ class BDGraphicsConfiguration extends BDGraphicsConfigurationBase {
return null;
}
public java.awt.geom.AffineTransform getDefaultTransform() {
- org.videolan.Logger.unimplemented("BDGraphicsConfiguration", "getDefaultTransform");
- return null;
+ // return Identity transformation
+ return new java.awt.geom.AffineTransform();
}
public java.awt.image.ColorModel getColorModel(int transparency) {
org.videolan.Logger.unimplemented("BDGraphicsConfiguration", "getColorModel");
More information about the libbluray-devel
mailing list