Re: Results of review of private JavaFX API for consideration to make public in JDK 9

2015-08-10 Thread Hervé girod
It passed under my radar that we use classes in com.sun.javafx.css, and com.sun.javafx.css.parser, mainly : - CSSParser - Stylesheet - Selector - Rule The use case is to be able to process JavaFX stylesheets properties. Hervé Sent from my iPad On 7 août 2015, at 01:10, Jonathan Giles

Issue With Drag-n-Drop

2015-08-10 Thread Sirish Vadala
«« NOTE: I have posted the same question on stackoverflow.com http://stackoverflow.com/questions/31886709/drag-and-drop-an-email-attachment-into-a-javafx-8-application . »» I am trying to implement a requirement to drag and drop documents attached in an email into a JavaFX 8 application running

Re: Blur effect on live scene?

2015-08-10 Thread Mike Hearn
That seems like a great summary Jim, thanks.

Re: Blur effect on live scene?

2015-08-10 Thread Jim Graham
Let me understand what is going on here. I get the result you are trying to achieve - blur the scene as background for something. I get that Mac and iOS seem to have direct support for this technique which appears to work faster than what we provide via the Effect mechanism. I also get

Re: Results of review of private JavaFX API for consideration to make public in JDK 9

2015-08-10 Thread Jonathan Giles
On 7/08/2015 9:51 p.m., Benjamin Gudehus wrote: Hi Jonathan, thanks for the summary! pull up your sleeves and work with us to get the API into a shape where it is good enough to commit to as public API I'd like to help with the public API for profiling and performance tracking (mainly

Re: Results of review of private JavaFX API for consideration to make public in JDK 9

2015-08-10 Thread Jonathan Giles
It is likely that these classes will be included as part of JEP 253 (in subproject 3), so they will likely become public API. Javadoc output for this subproject will be posted in the next week or two. Keep your eyes peeled :-) -- Jonathan On 11/08/2015 4:42 a.m., Hervé girod wrote: It

Re: Issue With Drag-n-Drop

2015-08-10 Thread Sirish Vadala
Thank you Kevin! I have filed a bug in Oracle's Java Bug Database [Review ID: JI-9023310] with a complete test program and steps to reproduce the issue. Thanks. -SV- On Mon, Aug 10, 2015 at 12:53 PM, Kevin Rushforth kevin.rushfo...@oracle.com wrote: Please file a bug with a complete test

Re: Issue With Drag-n-Drop

2015-08-10 Thread Kevin Rushforth
Please file a bug with a complete test program and instructions as to how to reproduce it. -- Kevin Sirish Vadala wrote: «« NOTE: I have posted the same question on stackoverflow.com http://stackoverflow.com/questions/31886709/drag-and-drop-an-email-attachment-into-a-javafx-8-application .

9-dev unlocked following sanity testing eom

2015-08-10 Thread Kevin Rushforth

Re: Results of review of private JavaFX API for consideration to make public in JDK 9

2015-08-10 Thread Hervé girod
Thanks, I will ! :-) Sent from my iPad On 11 août 2015, at 00:33, Jonathan Giles jonathan.gi...@oracle.com wrote: It is likely that these classes will be included as part of JEP 253 (in subproject 3), so they will likely become public API. Javadoc output for this subproject will be

Re: Can we use JavaPackager and a get full JRE?

2015-08-10 Thread Michael Hall
On Aug 9, 2015, at 11:14 PM, Danno Ferrin danno.fer...@oracle.com wrote: It's not easy, since this is functionality that is deliberately removed in the name of security. You could copy the .../bin/java file somewhere else prior to packaging and then copy it back into place after

Re: Can we use JavaPackager and a get full JRE?

2015-08-10 Thread Michael Hall
For now, OS X only, couldn’t you require your users to have the common, ‘browser’, jre installed? Or, thinking about I guess you could require the jdk to be installed. Then normal Runtime would work, OS X I’m pretty sure and maybe cross platform. For Java 9 I thought the jdk/jre separation

Re: Blur effect on live scene?

2015-08-10 Thread Michael Hoffer
Hi Mike, I have to agree with Tobias. While the effect works live (that was the whole point of my demo video) it still does a lot of unnecessary copying between CPU and GPU. OpenGL works without that. It doesn't have to transfer data between CPU and GPU for each and every pulse. Unfortunately, I

Re: Blur effect on live scene?

2015-08-10 Thread Mike Hearn
Yes, it can be done, and I have done this in my app. Take a look here: https://github.com/vinumeris/lighthouse/blob/master/client/src/main/java/lighthouse/Main.java#L474 I do it by taking a snapshot, then blurring that, then cross-fading, then replacing it with a live blur effect once done. I

Re: JavaFX Self-contained PKG and MacAppStore_PKG did not work

2015-08-10 Thread Tai Hu
Danno, You are absolutely correct on this one. In my build script since I used native=“all”, .app, .dmg and .pkg were all generated. When I use pkg to install the app, it actually just updated .app under my build folder instead of /Applications. pkgutil —pkg-info still think application is

Re: Blur effect on live scene?

2015-08-10 Thread Tobias Bley
Hi Michael, thanks for your demo. Yes, that would be a solution, but I do not want this cpu / gpu consuming capture approach. In OpenGL it would be very simple to simulate this milke glass effect: simply create a transparent texture and use a shader in the GPU to blur the underlying content -