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

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 !

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 nik...@therning.org: RoboVM doesn't do release builds yet (virtually none of LLVM's optimizations are enabled) and virtual and interface method dispatch is

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 rafi.ta...@oracle.com 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 !

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: 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, boolean

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 thor.johannes...@oracle.com wrote: I think there should be a simple way to request full scene anti-aliasing to improve 3D rendering. And also an optional more

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 a

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

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 t...@ultramixer.com Betreff: Aw: iOS: Calling native methods on iPhone Datum: 8. Juli 2013 09:57:16 MESZ An: Niklas Therning nik...@therning.org Hi Niklas, I tried it but

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). !

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: 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 !

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 !

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 =

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 yao.w.w...@oracle.com 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 !