Re: Raspberry Pi + JavaFX 3D demo

2013-07-15 Thread Niklas Therning
No, it's not possible. These have not yet been implemented. On Mon, Jul 15, 2013 at 4:19 PM, Tobias Bley wrote: > Is it possible to activate the optimizations for me in RoboVM 0.0.2 or > 0.0.3 (github)? > > > Am 12.07.2013 um 17:11 schrieb Niklas Therning : > > RoboVM doesn't do release builds

Re: iOS: Calling native methods on iPhone

2013-07-15 Thread Niklas Therning
Looks like a problem with blocks. presentViewController() takes a block ( (void (^)(void))completion ) but blocks are not yet supported by the RoboVM Objective-C bridge. If possible please try showing your view controller using a method which doesn't take a block. On Mon, Jul 15, 2013 at 11:26 PM

hg: openjfx/8/graphics/rt: RT-31667 Text visual bounds is incorrect when strikeThrough/underline set to true

2013-07-15 Thread hang . vo
Changeset: dc2725737249 Author:Yao Wang Date: 2013-07-15 18:35 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/dc2725737249 RT-31667 Text visual bounds is incorrect when strikeThrough/underline set to true ! modules/graphics/src/main/java/javafx/scene/text/Text.ja

RE: MSAA and Scene anti aliasing

2013-07-15 Thread John Smith
The discussion on choice of anti-aliasing algorithms reminds be me of the cipher suite setup for the jce, which represents this kind of information using String tokens. http://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html There you end up with stuff like => TLS_ECDHE_

hg: openjfx/8/graphics/rt: RT-31640: Exeception throws on any JavaFX program on the Windows (d3d) platform

2013-07-15 Thread hang . vo
Changeset: a1f0f26e732e Author:kcr Date: 2013-07-15 17:04 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/a1f0f26e732e RT-31640: Exeception throws on any JavaFX program on the Windows (d3d) platform Backed out changeset 142f5a3007a6 ! build.gradle ! buildSrc/src/mai

hg: openjfx/8/controls/rt: RT-30890: [DatePicker] Date from previous/next month is not selected upon click

2013-07-15 Thread hang . vo
Changeset: 1cea035eff37 Author:leifs Date: 2013-07-15 15:19 -0700 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/1cea035eff37 RT-30890: [DatePicker] Date from previous/next month is not selected upon click ! modules/controls/src/main/java/com/sun/javafx/scene/control/sk

hg: openjfx/8/controls/rt: RT-31193: [DatePicker] Focus does not move to the calendar

2013-07-15 Thread hang . vo
Changeset: 7eae933de07a Author:leifs Date: 2013-07-15 15:12 -0700 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/7eae933de07a RT-31193: [DatePicker] Focus does not move to the calendar ! modules/controls/src/main/java/com/sun/javafx/scene/control/skin/DatePickerContent.

hg: openjfx/8/graphics/rt: RT-31634 Ensemble8 ant jar fails: failed to create task or type javafx:com.sun.javafx.tools.and:application

2013-07-15 Thread hang . vo
Changeset: cce932bdf120 Author:dmasada Date: 2013-07-15 15:08 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/cce932bdf120 RT-31634 Ensemble8 ant jar fails: failed to create task or type javafx:com.sun.javafx.tools.and:application ! apps/samples/Ensemble8/build.xml

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Scott Palmer
I would vote for option b) Use a full class that can be extended later as needed. You don't have to use it like an enum. It could be a container for configuration parameters, possibly including the enum that says the antialiasing mode, but with separate fields (or maybe even just a single map)

hg: openjfx/8/controls/rt: 2 new changesets

2013-07-15 Thread hang . vo
Changeset: 01f71b062149 Author:jgiles Date: 2013-07-15 14:04 +1200 URL: http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/01f71b062149 General purpose *Table* implementation code cleanup (code reorganisation rather than refactoring). ! modules/controls/src/main/java/com/sun/ja

Fwd: iOS: Calling native methods on iPhone

2013-07-15 Thread Tobias Bley
Hi Niklas, do you have an idea how to fix the problem? Anfang der weitergeleiteten Nachricht: > Von: Tobias Bley > Betreff: Aw: iOS: Calling native methods on iPhone > Datum: 8. Juli 2013 09:57:16 MESZ > An: Niklas Therning > > Hi Niklas, > > I tried it but it fails with the following exce

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Felipe Heidrich
The problem is that once we commit to an API we can't change it later. And the simple and nice API of today can become the clumsy API of tomorrow. If you are fairly sure you never expose any other antiAliasing type, then keep the API we have. Otherwise use a enum instead of a boolean (and I d

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Richard Bair
> I think there should be a simple way to request full scene anti-aliasing to > improve 3D rendering. And also an optional more advanced way to specify which > type… I agree it should be nice and simple. It should also allow us the freedom to make it better in the future. I think that adding

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Chien Yang
+1. Well said. - Chien Sent from my mobile phone. Please excuse my brevity. On Jul 15, 2013, at 12:19 PM, Thor Johannesson wrote: > I think there should be a simple way to request full scene anti-aliasing to > improve 3D rendering. And also an optional more advanced way to specify which >

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Thor Johannesson
I think there should be a simple way to request full scene anti-aliasing to improve 3D rendering. And also an optional more advanced way to specify which type… The current way of setting AA is nice simple hint. Scene(Parent root, @Default("-1") double width, @Default("-1") double height, boolea

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Kevin Rushforth
I am fine with an enum that represents the style of AA requested: NONE, MSAA, SOME_OTHER_AA, ... It is the combining of number of samples into the enum that seems undesirable to me. I would prefer that be a separate Integer attribute. -- Kevin Mario Torre wrote: At first I was about to re

hg: openjfx/8/graphics/rt: RT-27184 FB: cursor image is seen when a touch screen is connected

2013-07-15 Thread hang . vo
Changeset: ab0736381727 Author:Rafi Tayar Date: 2013-07-15 17:21 +0300 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/ab0736381727 RT-27184 FB: cursor image is seen when a touch screen is connected ! modules/graphics/src/main/java/com/sun/glass/ui/lens/LensApplication.j

Re: Raspberry Pi + JavaFX 3D demo

2013-07-15 Thread Tobias Bley
Is it possible to activate the optimizations for me in RoboVM 0.0.2 or 0.0.3 (github)? Am 12.07.2013 um 17:11 schrieb Niklas Therning : > RoboVM doesn't do release builds yet (virtually none of LLVM's optimizations > are enabled) and virtual and interface method dispatch is horribly slow > (l

hg: openjfx/8/graphics/rt: 4 new changesets

2013-07-15 Thread hang . vo
Changeset: 8091df24a8e5 Author:Martin Sladecek Date: 2013-07-15 12:19 +0200 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/8091df24a8e5 RT-31644 Reimplement dirty layout processing to use flags ! modules/controls/src/main/java/com/sun/javafx/scene/control/skin/VirtualF

hg: openjfx/8/graphics/rt: 4 new changesets

2013-07-15 Thread hang . vo
Changeset: b7b513716078 Author:Alexander Kouznetsov Date: 2013-07-13 17:12 -0700 URL: http://hg.openjdk.java.net/openjfx/8/graphics/rt/rev/b7b513716078 Ensemble: Fix for RT-31636 Some Ensemble samples don't start in standalone mode ! apps/samples/Ensemble8/src/samples/java/ensembl

Re: iOS gradle script doesn't work anymore

2013-07-15 Thread David Pulkrabek
Hi Tobi, I just pushed a patch, so the error should be fixed once openjfx repo will be synced. Sorry for the trouble. Thanks, David On 7/14/13 11:47 AM, Tobias Bley wrote: Hi, When I try to build OpenJFX for iOS the following error occurs: * Where: Build file '/Applications/Developer/Java

Re: MSAA and Scene anti aliasing

2013-07-15 Thread Mario Torre
At first I was about to reply a +1 to Kevin, but then I realised: 1. This is indeed an area where people want to know the implementation details. 2. An enum can be extended with different implementations, for example add a non MSAA to the mix. The drawback is that the enum may grow just for the

Re: [API Review]: Node validation

2013-07-15 Thread Martin Sladecek
Sounds like a plan. I'll retarget RT-31133 ("validate") to Van Ness in case it would be required later. I will change the layout processing so that it uses flags instead of dirty root lists. That way, getRoot().layout() will trigger a complete layout pass or both Scenes and SubScenes. Means