hg: openjfx/8u-dev/rt: RT-11175: PrismSettings.isVsyncEnabled is not taken into consideration during prism-d3d initialization

2014-03-04 Thread hang . vo
Changeset: 085d0c62f4c8
Author:vadim
Date:  2014-03-04 14:55 +0400
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/085d0c62f4c8

RT-11175: PrismSettings.isVsyncEnabled is not taken into consideration during 
prism-d3d initialization
Reviewed-by: ckyang

! modules/graphics/src/main/native-prism-d3d/D3DContext.cc
! modules/graphics/src/main/native-prism-d3d/D3DContext.h
! modules/graphics/src/main/native-prism-d3d/D3DContextInit.cc
! modules/graphics/src/main/native-prism-d3d/D3DPipelineManager.cc
! modules/graphics/src/main/native-prism-d3d/D3DPipelineManager.h



[8u20] Review request for RT-16923: The various addListener methods should throw NPE if a null listener is passed in, rather than throwing NPE when the listener list is iterated

2014-03-04 Thread Vadim Pakhnushev

Hi Felipe, Anthony,

Please review this fix:
https://javafx-jira.kenai.com/browse/RT-16923
http://cr.openjdk.java.net/~vadim/RT-16923/webrev.00/

Thanks,
Vadim



hg: openjfx/8u-dev/rt: RT-36087 JavaBeanProperty: memory leak?

2014-03-04 Thread hang . vo
Changeset: 20943f5b3791
Author:Martin Sladecek martin.slade...@oracle.com
Date:  2014-03-04 14:11 +0100
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/20943f5b3791

RT-36087 JavaBeanProperty: memory leak?

+ 
modules/base/src/main/java/javafx/beans/property/adapter/DescriptorListenerCleaner.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanBooleanProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanDoubleProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanFloatProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanIntegerProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanLongProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanObjectProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/JavaBeanStringProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanBooleanProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanDoubleProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanFloatProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanIntegerProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanLongProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanObjectProperty.java
! 
modules/base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanStringProperty.java



hg: openjfx/8u-dev/rt: RT-36005: [Linux] Provide support for prerm script for Debian package

2014-03-04 Thread hang . vo
Changeset: e8e29c6f29ba
Author:shemnon
Date:  2014-03-04 10:00 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/e8e29c6f29ba

RT-36005: [Linux] Provide support for prerm script for Debian package
Summary: add blank prerm and preinst scripts for deb

! 
modules/fxpackager/src/main/java/com/sun/javafx/tools/packager/bundlers/LinuxDebBundler.java
! 
modules/fxpackager/src/main/resources/com/oracle/bundlers/linux/LinuxDebBundler.properties
+ 
modules/fxpackager/src/main/resources/com/sun/javafx/tools/resource/linux/template.preinst
+ 
modules/fxpackager/src/main/resources/com/sun/javafx/tools/resource/linux/template.prerm



Re: [8u20] Review request: RT-35197: Use Lambda in FX runtime and samples

2014-03-04 Thread Stephen F Northover

Of course I mean Leonid, who is the owner of web, not Anthony ...

On 2014-03-04 1:18 PM, Stephen F Northover wrote:

Hi Anthony,

Please review the lambdification of the web component. You are welcome 
to apply the patch, but there are numerous changes and they are all 
automatic. If you have outstanding changes, please coordinate with me 
and I will re-lambdify to include the changes.


Jira: https://javafx-jira.kenai.com/browse/RT-35197
Webrev: See patch is in the JIRA

Steve




hg: openjfx/8/master/rt: Added tag 8.0-b132 for changeset e2fd0ac9762b

2014-03-04 Thread hang . vo
Changeset: f89b7dc932af
Author:hudson
Date:  2014-03-04 10:36 -0800
URL:   http://hg.openjdk.java.net/openjfx/8/master/rt/rev/f89b7dc932af

Added tag 8.0-b132 for changeset e2fd0ac9762b

! .hgtags



Re: CSS Font size in points doesn't match Node.Font.Size

2014-03-04 Thread Tom Schindl
There was a thread some time ago on this List with explainations of this 
behavior!

Tom

Von meinem iPhone gesendet

 Am 05.03.2014 um 01:03 schrieb Jeff Martin j...@reportmill.com:
 
 I can't quite wrap my head around why when I specify an -fx-font-size of 9pt 
 in CSS, it turns into a 12 pt font in my rendered node. I suppose CSS is 
 upscaling for my 96 dpi device, but it makes other measurements that depend 
 on that setting potentially wrong.
 
 Any suggestions on how I should be thinking about this (other than that this 
 is a bug :-)?
 
 jeff


Re: CSS Font size in points doesn't match Node.Font.Size

2014-03-04 Thread Jeff Martin
Thanks Tom! I assume the thread was this one:

Font.font() says it is point size but it looks like it are pixels

http://mail.openjdk.java.net/pipermail/openjfx-dev/2014-January/012398.html

I guess the final word is that CSS assumes 1pt==1/92in, and Nodes convert that 
to the real world on render?

And that this is basically a bug, but it can't be fixed due to legacy 
considerations?

jeff


On Mar 4, 2014, at 6:10 PM, Tom Schindl tom.schi...@bestsolution.at wrote:

 There was a thread some time ago on this List with explainations of this 
 behavior!
 
 Tom
 
 Von meinem iPhone gesendet
 
 Am 05.03.2014 um 01:03 schrieb Jeff Martin j...@reportmill.com:
 
 I can't quite wrap my head around why when I specify an -fx-font-size of 9pt 
 in CSS, it turns into a 12 pt font in my rendered node. I suppose CSS is 
 upscaling for my 96 dpi device, but it makes other measurements that depend 
 on that setting potentially wrong.
 
 Any suggestions on how I should be thinking about this (other than that this 
 is a bug :-)?
 
 jeff



hg: openjfx/8u-dev/rt: Fix RT-35058: ES2 texture lock warnings in CanvasTest/Zoomy on ARM

2014-03-04 Thread hang . vo
Changeset: df8841896a28
Author:flar james.gra...@oracle.com
Date:  2014-03-04 19:02 -0800
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/df8841896a28

Fix RT-35058: ES2 texture lock warnings in CanvasTest/Zoomy on ARM
Reviewed by: Lisa

! modules/graphics/src/main/java/com/sun/scenario/effect/FilterContext.java
! 
modules/graphics/src/main/java/com/sun/scenario/effect/impl/prism/PrFilterContext.java
! 
modules/graphics/src/main/java/com/sun/scenario/effect/impl/prism/PrRenderer.java
! 
modules/graphics/src/main/java/com/sun/scenario/effect/impl/prism/ps/PPSRenderer.java
! 
modules/graphics/src/main/java/com/sun/scenario/effect/impl/prism/ps/PPStoPSWDisplacementMapPeer.java