Re: Optimised, high-performance, multi-threaded rendering pipeline

2016-11-27 Thread Tobias Bley
Where can we read more about your HPR renderer? > Am 25.11.2016 um 16:45 schrieb Felix Bembrick : > > Short answer? Maybe. > > But exactly one more word than any from Oracle ;-) > >> On 26 Nov. 2016, at 00:07, Tobias Bley wrote: >> >> A very short ans

Re: Optimised, high-performance, multi-threaded rendering pipeline

2016-11-25 Thread Tobias Bley
A very short answer ;) …. Do you have any URL? > Am 25.11.2016 um 12:19 schrieb Felix Bembrick : > > Yes. > >> On 25 Nov. 2016, at 21:45, Tobias Bley wrote: >> >> Hi, >> >> @Felix: Is there any Github project, demo video or trial to test HPR wit

Re: Optimised, high-performance, multi-threaded rendering pipeline

2016-11-25 Thread Tobias Bley
Hi, @Felix: Is there any Github project, demo video or trial to test HPR with JavaFX? Best regards, Tobi > Am 11.11.2016 um 12:08 schrieb Felix Bembrick : > > Thanks Laurent, > > That's another thing we discovered: using Java itself in the most performant > way can help a lot. > > It can

Re: Marlin-Renderer and JavaFX

2016-11-10 Thread Tobias Bley
a fully working prototype! > > And it's not just "parallelised" but it greatly improves the efficiency and > utilisation of both the CPU (and cores) and the GPU(s). > >> On 10 Nov. 2016, at 18:35, Tobias Bley wrote: >> >> Do you have started any par

Re: Marlin-Renderer and JavaFX

2016-11-09 Thread Tobias Bley
Do you have started any parallelization? > Am 10.11.2016 um 01:02 schrieb Felix Bembrick : > > If you want to know how to parallelise the JavaFX pipeline (or how it's > already been done with amazing results) then talk to me. > > If, of course, this email gets moderated... > >> On 10 Nov. 20

Re: Future of JavaFX

2015-12-02 Thread Tobias Bley
I absolutely agree. While we are committing to many Github projects it’s too hard to do that for JavaFX via bugs.sun.com…. Github is a modern way of developing together. The „bugs.sun.com“ way is like using a candle instead of electric light… Best Regards, Tobi > Am 02.12.2015 um 13:32 schrie

WebView + Youtube = NullPointerException

2015-10-12 Thread Tobias Bley
Hi, we tried to replace our in house Java based browser rapper (Webkit on Mac, InternetExplorer on Windows) with WebView. But that’s currently not possible because of NullPointerException and graphic errors (texture failures). Here is a simple test case: https://github.com/UltraMixer/JavaFXPer

Bug: rotating using setRotationAxis() doesn't work on iOS

2015-09-08 Thread Tobias Bley
Hi, just noticed that node rotation does not work when setting a rotation axis on iOS: simple test case: testNode.setRotationAxis(Rotate.Y_AXIS); testNode.setRotate(80); Best regards, Tobi

Prism: implementation of node scale?

2015-08-28 Thread Tobias Bley
Hi, does anybody know where the node scaling is implemented in prism es2 pipeline? I would like to fix the „scale bug on iOS“ (scaling of nodes not possible on iOS). Best regards, Tobi

JarBundler project moved to GitHub

2015-08-13 Thread Tobias Bley
Hi, to who it may concern: We have moved the JarBundler project from SourceForge to GitHub. Additionally we ported the project structure to maven structure and published a new version "JarBundler 3.2.2" to the maven repository. JarBundler is an ant task to create Mac „*.app“ bundles for Apples

Re: Blur effect on live scene?

2015-08-10 Thread Tobias Bley
You only can set the blur effect on a whole pane but not on a part of it. What I want to do is to simulate the iOS and Mac OS X header… they blur their background which can scrolled under the header…take a look here: http://codepen.io/rikschennink/pen/zvcgx

Re: Blur effect on live scene?

2015-08-10 Thread Tobias Bley
Hi Mike, yes, but that’s another demo of using snapshot approach…the question is: why can’t we use this effect in live? So one solution would be to set clip on the effect… Best, Tobi > Am 10.08.2015 um 14:13 schrieb Mike Hearn : > > Yes, it can be done, and I have done this in my app. Take

Re: Blur effect on live scene?

2015-08-10 Thread Tobias Bley
ago I did some experiments in that direction: > http://mihosoft.eu/?p=1025 <http://mihosoft.eu/?p=1025> Does that help? > > Regards, > Michael > > 2015-08-10 13:04 GMT+02:00 Tobias Bley <mailto:t...@ultramixer.com>>: > Hi, > > is it possible to set a blur

Blur effect on live scene?

2015-08-10 Thread Tobias Bley
Hi, is it possible to set a blur effect on the complete scene or maybe a part of it? I would like to place a pane over another pane (via StackPane) which blurs the underlaying pane… like a „milk glass effect“… Any ideas? Best regards, Tobi

Loading Helvetica Neue Light font?

2015-08-03 Thread Tobias Bley
Hi, does anybody know how to use or load the „Helvetica Neue Light“ font in JavaFX? Font font = Font.font("Helvetica Neue", FontWeight.EXTRA_LIGHT,FontPosture.REGULAR, 16.0); => gives me the medium style font: font = Font[name=Helvetica Neue Medium, family=Helvetica Neue, style=Medium, size=

JavaFX graphic performance slow on Mac? Clock app

2015-07-10 Thread Tobias Bley
Hi, currently our experiences with JavaFX on Mac are very disappointing. While JavaFX on Windows runs very good with low cpu usage, JavaFX on Mac via Java 8 doesn’t perform well. I created a little clock app which uses between 25% and 80% cpu usage. But what’s the reason for? I though JavaFX r

Re: JavaFX graphic performance slow on Mac? Clock app

2015-07-10 Thread Tobias Bley
lk of the performance was ES2 vs OGL). > > Can you remove the external dependencies on the date formatter from your test > case and then submit a bug so we can track this issue? > > ...jim > > On 7/8/15 7:57 AM, Tobias Bley wrote: >> Hi Jim, >>

Re: JavaFX graphic performance slow on Mac? Clock app

2015-07-10 Thread Tobias Bley
ore overhead than the ES2 pipe on > Windows, the bulk of the performance was ES2 vs OGL). > > Can you remove the external dependencies on the date formatter from your test > case and then submit a bug so we can track this issue? > > ...jim > > On 7/

Re: JavaFX graphic performance slow on Mac? Clock app

2015-07-10 Thread Tobias Bley
Hi Jörg, Java Swing performs much better on Windows using D3D than on Mac using OpenGL/Quartz…. so I suppose the OpenGL implementation on Mac isn’t very good….maybe that’s the reason for the new Metal rendering API on Mac 10.11? Best regards, Tobi > Am 10.07.2015 um 00:21 schrieb Jörg Wille :

Re: JavaFX graphic performance slow on Mac? Clock app

2015-07-08 Thread Tobias Bley
Windows on what hardware?) > > ...jim > > On 7/7/15 4:32 AM, Tobias Bley wrote: >> >> >> Hi, >> >> currently our experiences with JavaFX on Mac are very disappointing. While >> JavaFX on Windows runs very good with low cpu usage, Java

JavaFX graphic performance slow on Mac? Clock app

2015-07-07 Thread Tobias Bley
Hi, currently our experiences with JavaFX on Mac are very disappointing. While JavaFX on Windows runs very good with low cpu usage, JavaFX on Mac via Java 8 doesn’t perform well. I created a little clock app which uses between 25% and 80% cpu usage. But what’s the reason for? I though JavaFX

Re: JavaFX JIRA issues moving to JBS

2015-04-14 Thread Tobias Bley
Hi, in my opinion it’s definitely no good news to move from JIRA to JBS. While Jira is a very good and popular bug tracking system, the JDK JBS is a pain. With JBS the community efforts will decrease. It’s too complicated to be part of the Java community if you are forced to first sign a commit

Re: Canvas performance on Mac OS

2015-03-27 Thread Tobias Bley
In my opinion the whole graphics performance on MacOSX isn’t good at all with JavaFX…. > Am 27.03.2015 um 22:10 schrieb Robert Krüger : > > The bad full screen performance is without the arcs. It is just one call to > fillRect, two to strokeOval and one to fillOval, that's all. I will build a >

Re: 8u40 is released / SB

2015-03-05 Thread Tobias Bley
But what about Xcode GUI design? Android Studio GUI designer? QT Designer? … > Am 05.03.2015 um 09:19 schrieb Tom Eugelink : > > My two cents would be that maintaining a UI builder is an awful lot of work, > while I expect that a lot of programmers won't be using SB because it always > has lim

Re: 8u40 is released

2015-03-04 Thread Tobias Bley
which future should it be? IoT? > Am 04.03.2015 um 23:29 schrieb Felix Bembrick : > > JavaFX has a future but perhaps not the one we were all expecting or hoping > for. > > On 5 March 2015 at 09:18, Tobias Bley <mailto:t...@ultramixer.com>> wrote: > In the pa

How to use scaleX/Y to change layout bounds?

2015-01-27 Thread Tobias Bley
Hi, when I call button.setScaleX(.5) and button.setScaleY(.5) the button changes it’s size only visually - the layout bounds does not change… How can I change this behaviour? Best regards, Tobi

Re: [8u40]: Review request for RT-39489: Latest 10.10.2 beta update causes NSTouch exceptions continually

2014-12-01 Thread Tobias Bley
They work but the performance goes down to many native exceptions…. Tobi > Am 01.12.2014 um 22:04 schrieb Mike Hearn : > > What happens to existing jfx apps once 10.10.2 starts rolling out? Do they > all break?! I didn't see much discussion of the scope of this issue in the > bug report. > > O

error while building JFX 8udev for iOS (2)

2014-07-29 Thread Tobias Bley
@Oracle, can you help me? > Anfang der weitergeleiteten Nachricht: > > Von: Tobias Bley > Betreff: error while building JFX 8udev for iOS > Datum: 15. Juli 2014 13:52:11 MESZ > An: "openjfx-dev@openjdk.java.net Mailing" > > Hi folks, > > when I tr

(Multi)Touch with Windows 7

2014-07-25 Thread Tobias Bley
Hi, does anyone know if it’s possible to use JavaFX 8 and touch gestures like swipe on Windows 7? Best regards, Tobi

ANGLE - Translating OpenGL ES 2 code to DirectX?

2014-07-21 Thread Tobias Bley
Hi, does anybody knows the AngleProject? (https://code.google.com/p/angleproject/) It’s used by Chrome and Firefox for WebGL to translate OpenGL ES2 code to DirectX on Windows…. Maybe it can be used to use the JavaFX OpenGL ES2 pipeline on Windows too? Best regards, Tobi -- Tobias Bley

error while building JFX 8udev for iOS

2014-07-15 Thread Tobias Bley
Hi folks, when I try to build JFX for iOS using „gradle sdk…“ i’m getting the following errors - is it a known issue? Best regards, Tobi :graphics:ccIosPrismES2Arm /Applications/Developer/Java/open-jfx-graphics-8u-dev2/rt/modules/graphics/src/main/native-prism-es2/ios/IOSGLContext.c:67:34: w

Re: OT: Netbeans ported to JFX?

2014-07-11 Thread Tobias Bley
I absolutly agree. I don’t love Objective-C and Cocoa-APIs. But I have the feeling that „it must be a great technology/API“ if there are so many good applications like Apple Pages, iTunes, …. which all are using Cocoa. That’s missing with JavaFX. The last years it was funny to see cool demos. Bu

Re: OT: Netbeans ported to JFX?

2014-07-09 Thread Tobias Bley
very interesting question ;) Will there be a android and iOS version of Netbeans in the future ;)? > Am 09.07.2014 um 11:40 schrieb Robert Krüger : > > Hi, > > it is a little off-topic but the people reading this list are most > likely the ones who could answer this. > > Is a port of Netbean

Re: Exposing native surface or opengl handle

2014-06-13 Thread Tobias Bley
Hi Robert, thank you for pushing this topic again :) For our work we need a way to share the OpenGL context between JavaFX code and native code so that we can render stuff from native code into the JavaFX context. Another question and need is to how to share a context in JavaFX? How is it p

Re: Retro Game I on the App Store

2014-05-20 Thread Tobias Bley
1) Yes, we use RoboVM as well - because currently it’s the only way to bring JFX on iOS… (ok there is Avian VM as well….) 2) I think RoboVM is great and is not the problem. It’s JavaFX which is currently not optimized to run on iOS (retina devices). Am 20.05.2014 um 22:36 schrieb Steven Van I

Re: Retro Game I on the App Store

2014-05-20 Thread Tobias Bley
Hi, sorry, it’s not the first JFX app on the AppStore…. We released our JFX based remote control app on 03/05/2014 ;) https://itunes.apple.com/de/app/ultramixer-remote/id669471908?mt=8 Concerning your retro game: It’s good to see other JFX based apps on the AppStore…but…. such a simple ping po

ScrollPane like on iOS?

2014-05-11 Thread Tobias Bley
Hi JavaFX freaks, does anybody has an idea how to start to develop a ScrollPane that acts like the one on iOS? When the scroll position on iOS is on top (0) and the user drags the scroll pane to bottom, it slides down until the user releases the finger (touch off). Best regards, Tobi

JavaFX on iOS and Android: any real world app?

2014-03-23 Thread Tobias Bley
After showing some demos concerning JavaFX on iOS and Android we would like to see any real world JFX app for iOS or Android. Is there anybody in the mailing list who developed a real world app? What are your experiences? What about performance? Best regards, Tobi

Very poor performance of JavaFX on iPhone - 6 months later

2014-01-03 Thread Tobias Bley
Hi, many months ago I reported the „poor performance on iOS“ issue (https://javafx-jira.kenai.com/browse/RT-31453). Now 6 months later the bug is already open and no one of Oracle answers me on Jira. What’s up? How can we fix this important bug? Best, Tobi

Re: scenebuilder and migpane

2014-01-03 Thread Tobias Bley
That would be great! We only using MigPane for all our layouts… Am 03.01.2014 um 10:10 schrieb Tom Eugelink : > > Would it be possible to offer MigPane as a Container in SceneBuilder? > > Tom >

Re: Scene Builder is now open source!

2013-12-03 Thread Tobias Bley
Great news! Thank you very much Simon for doing this great job! Could you please tell us more about the SB Kit API? Best, Tobi Am 03.12.2013 um 16:04 schrieb Simon Vienot : > Hello OpenJFXers ! > > We're very happy to announce that Scene Builder is now open source, as a part > of the OpenJFX

Show case: JFX on iOS and Android

2013-11-18 Thread Tobias Bley
For all who do not follow me on twitter: a few screenshots concerning JFX on iOS and Android: http://blog.software4java.com/?p=148#comment-4629 Best regards, Tobi -- Tobias Bley Chief Executive Officer Tel +49 351 - 264 49 86

Re: JavaFX on iOS and Android: The real problem and challenge

2013-11-09 Thread Tobias Bley
The question is: Is JavaFX for mobile a business for Oracle to make big money? I suppose Oracle don’t believe in it. They believe in servers, cloud and the „Internet of Things“ - that’s why they invest in Rasp.PI, Freescale, etc. btw: With „Oracle“ I mean „the management of Oracle“, not the guy

Android replaces Dalvik with ART

2013-11-07 Thread Tobias Bley
Hi, after we reached the goal to use JavaFX on Android via Dalvik, Google announces the successor of Dalvik, called ART (Android Runtime). The start to move because of the legal issues with Java and Oracle…. http://source.android.com/devices/tech/dalvik/art.html The question is now: How to use

Re: JFXPanel vs. real world usage

2013-10-24 Thread Tobias Bley
I added a simple accordion as JFXPanel into a swing frame and the performance is not good. the cpu usage goes up to 100% when moving the mouse over the accordion title panes (hover effect). The resizing performance is bad too. Am 24.10.2013 um 20:10 schrieb rdarr...@yahoo.com: > I have the sam

Re: JavaFX on iOS and Android: The real problem and challenge

2013-10-23 Thread Tobias Bley
ups, I made one mistake: "So both solutions use the real Java platform (=OpenJDK)!“ should be "So both solutions does not use the real Java platform (=OpenJDK)!“ ;) Am 24.10.2013 um 08:41 schrieb Tobias Bley : > Hello to the community, > > I read the last discussion a

JavaFX on iOS and Android: The real problem and challenge

2013-10-23 Thread Tobias Bley
Hello to the community, I read the last discussion about „JavaFX native look and feel“ and have to get out of my mind the following: In my opinion the MAIN point is not „how to bring the native look and feel to iOS/Android“, the real MAIN issue is: we need a professional JVM(!) which works per

Re: JavaFX on iOS and Android - are we there yet?

2013-10-22 Thread Tobias Bley
I would avoid image based CSS files… we should create pure CSS based skins using pure css styles and SVG paths… Am 22.10.2013 um 16:33 schrieb Richard Bair : >> 1) Look and Feel: >> >> IMO it’s enough to build „native looking“ css based skins! That could be >> very quickly without complex tec

Re: JavaFX on iOS and Android - are we there yet?

2013-10-22 Thread Tobias Bley
1) Look and Feel: IMO it’s enough to build „native looking“ css based skins! That could be very quickly without complex technologies like CALayer etc. 2) After starting RoboVM JavaFX needs round about 10 seconds to start the simple list example on iPhone4. So it’s too long. I tried to use the p

GlassScene: setSecurityContext()

2013-10-17 Thread Tobias Bley
Hi, why do you introduced the security concept in GlassScene and GlassStage? setSecurityContext() What is the goal? The problem is the used class sun.misc.SharedSecrets is not available in the android class library. Altough I have added it to the robovm compat lib I’m getting a security error

developers wanted to port RoboVM AOT compiler to Android

2013-10-15 Thread Tobias Bley
https://github.com/robovm/robovm/issues/186 discussion here: https://groups.google.com/forum/#!searchin/robovm/android/robovm/x_X33VLMxDU/sHnozCJiY4kJ

Re: JAVAFX on ANDROID

2013-10-10 Thread Tobias Bley
Tomas from Oracle is working on the Android port of JavaFX. He has developed a DalvikLauncher and a JavaSELauncher. So he is able to tell you (and me :)) more about that important theme „JavaFX on Android“. Best regards, Tobi Am 10.10.2013 um 16:55 schrieb Philippe TIFFEAU : > Hello, > > Som

JavaFX on Android: JavaSELauncher?

2013-10-07 Thread Tobias Bley
Next try :) @Oracle: which JVM uses the new JavaSELauncher class in the com.oracle.dalvik package? How to use this class to start JFX on Android? Best, Tobi Anfang der weitergeleiteten Nachricht: > Von: Tobias Bley > Betreff: JavaFX on Android: JavaSELauncher? > Datum: 1. Oktobe

Pagination: hide control box

2013-10-02 Thread Tobias Bley
Hi, I would like to use Pagination for an iOS animation between two slide.slides. Would it be possible to hide the pagination control?

JavaFX on Android: JavaSELauncher?

2013-10-01 Thread Tobias Bley
@Oracle: which JVM uses the new JavaSELauncher class in the com.oracle.dalvik package? How to use this class to start JFX on Android? Best, Tobi

Re: Moving on to a "round house kick" (forked from Re: JavaOne roundup?)

2013-10-01 Thread Tobias Bley
Richard, why do you choose Rasp.PI as demo platform instead of iPad or Android tablet? I really believe in you JFX guys and I really believe that you all love to see JFX on tablets. So I don’t understand why you can’t open your mouth, go to your management and legal department and tell him, tha

Re: Moving on to a "round house kick" (forked from Re: JavaOne roundup?)

2013-09-30 Thread Tobias Bley
side. >> If a customer has a little more demand on new technologies you'll be lost >> with ADF, then comes JavaFX in the game. >> Porting from ADF to JavaFX should be that hard, but you cannot deploy it on >> the same platforms like ADF. There is a gap >> in the p

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
ertjan/entry/bck2brwsr_at_javaone_2013 > > That said, the JavaFX part was only released last saturday, you have to build > it yourself and there is no documentation yet. > > > m 30.09.2013 um 11:30 schrieb Tobias Bley : > >> Is there any good „how to make a JavaFX based app for iO

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
30, 2013 at 12:59 PM, Tobias Bley wrote: > Does Oracle really has an AOT based JVM for iOS and Android? > > > Am 30.09.2013 um 11:16 schrieb Udo Rader : > > > If you add the pieces of information together (announced and then > > shortly cancelled J1 talks), you perfe

Re: Moving on (forked from Re: JavaOne roundup?)

2013-09-30 Thread Tobias Bley
it in your blog if you have one. > > Hervé > > Sent from my iPhone > >> On 30 sept. 2013, at 11:14, Tobias Bley wrote: >> >> I absolutely agree Daniel. I opened a very important bug reporting >> concerning JFX performance on iPhone which currently preven

Re: Moving on (forked from Re: JavaOne roundup?)

2013-09-30 Thread Tobias Bley
eally does have something in the pipeline for iOS/Android then > they are absolutely right to get it *perfect* before they let it loose on the > public. > > Having said this though and as starry-eyed as I am, even I cannot wait > forever > > > On 30 September 2013 19:1

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
o HTML5 Canvas and runs in any modern browser including Android >>> phones and iPad/iPhone. Using Cordova, you can bundle as native apps. >>> >>> --Toni >>> >>> >>> Am 30.09.2013 um 08:50 schrieb Felix Bembrick : >>> >>>>

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
issues here, not >> just technical. I am sure they want to get it perfect before they announce >> anything. Let's hope that's why nothing has eventuated yet... >> >>> On 30 Sep 2013, at 17:04, Tobias Bley wrote: >>> >>> I don’t understand

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
unce > anything. Let's hope that's why nothing has eventuated yet... > >> On 30 Sep 2013, at 17:04, Tobias Bley wrote: >> >> I don’t understand why „all“ this people who needs JavaFX on iOS/Android >> does not tell it Oracles management. And I don’t understa

Re: Moving on (forked from Re: JavaOne roundup?)

2013-09-30 Thread Tobias Bley
pick it up, let me know (you need > a few free hours a week just to maintain it). I'm picking up stumps and > moving on. > > I also have the access rights for the openjfx Maven repo on Sonatype (needed > to deploy to Maven central). I imagine Sonatype would grant this acc

Re: JavaOne roundup?

2013-09-30 Thread Tobias Bley
In fact, without it > happening soon, JavaFX is already dead. > > But let's not give up yet. Perhaps it's closer than we know. I am a glass > half full kinda guy :-) > >> On 30 Sep 2013, at 16:40, Tobias Bley wrote: >> >> I suppose „legal reasons

Re: JavaOne roundup?

2013-09-29 Thread Tobias Bley
I suppose „legal reasons“…. For me it’s very frustrating to see every year the same procedure: JavaFX-iOS/Android related tracks were canceled - „nerd“ stuff like Rasp.PI, DukePad & Co were announced. Maybe I’m really the only one who needs JavaFX on mobile to use JavaFX on desktop as well… :(

JavaOne: JavaFX on Android track canceled?

2013-09-25 Thread Tobias Bley
own fork of openjfx without jdk8 > features ( I haven't found any uptodate) + some hacking with class files > version because dexer requires jdk6 compatible classes. > > good luck > -Tomas > > > On 09/09/2013 11:52 PM, Tobias Bley wrote: >> Hi Tomas, >> >

Using VM Linux on ARM on Android with OpenJFX

2013-09-18 Thread Tobias Bley
Hi, has anyone tried to use „VM Linux on ARM“ in conjunction with OpenJDK and OpenJFX for Android? Take a look here at page 12ff: http://jayskills.com/jayday2013/files/2013/06/JavaFX-goes-Open-Source.pdf

Couldn't load glass_lens_android

2013-09-11 Thread Tobias Bley
I tried to start OpenJFX on Android using the FXActivity but it fails because JFX can’t load the glass libraries… Tomas, what did I wrong? I copied the generated openjfx „android-sdk“ including the sub dirs „dalvik“ and „rt“. 11 02:59:12.755: ERROR/AndroidRuntime(983): FATAL EXCEPTION: main

Re: Building OpenJFX for Android?

2013-09-10 Thread Tobias Bley
g another NDK version? Best, Tobi Am 10.09.2013 um 15:59 schrieb tomas.brandalik : > On 09/10/2013 02:55 PM, Tobias Bley wrote: >> Hi, >> >> with the current repository of OpenJFX I can’t build OpenJFX for Android >> anymore (gradle clean sdk -PCOMPILE_TARGET

Building OpenJFX for Android?

2013-09-10 Thread Tobias Bley
Hi, with the current repository of OpenJFX I can’t build OpenJFX for Android anymore (gradle clean sdk -PCOMPILE_TARGETS=android ). Is there something that has changed? Maybe I need another Android SDK or NDK (currently using android-ndk-r9) Best regards, Tobi

Re: can't build OpenJFX iOS SDK anymore: fxpackager failed

2013-08-21 Thread Tobias Bley
SDK build should pass, at least it passes on my machine. > Please note that fxpackager is excluded from the iOS build system by default > in ios.gradle script (IOS.compileFXPackager = false). > > David > > On 8/20/13 4:17 PM, Tobias Bley wrote: >> Hi, >> >>

can't build OpenJFX iOS SDK anymore: fxpackager failed

2013-08-20 Thread Tobias Bley
Hi, after a short „hg pull and hg update“ I can't build OpenJFX iOS SDK anymore: fxpackager failed error... :fxpackager:buildJavaFXPackager Calling Task.setEnabled(boolean) after task execution has started has been deprecated and is scheduled to be removed in Gradle 2.0. Check the configurati

Re: current state of gradle script for Android?

2013-08-12 Thread Tobias Bley
> -Tomas > > On 08/11/2013 06:07 PM, Tobias Bley wrote: >> Hi Tomas, >> >> When I extend a default Activity from FXActivity and try to start this >> activity (coding with Android Studio) the emulator does not find the *.so >> files from JavaFX (especially

Re: current state of gradle script for Android?

2013-08-11 Thread Tobias Bley
to run on dalvik we need to compile jfx with jdk1.6 (I suppose 1.7 > would do as well). Then there will be some packages missing for example > java.beans or sun.misc but it could be fixed somehow. > > -Tomas > > On 08/08/2013 10:05 AM, Tobias Bley wrote: >> Hi Tomas, &

Re: How to raise JavaFX iOS bugs?

2013-08-09 Thread Tobias Bley
:-) > > > On 9 August 2013 16:26, Daniel Zwolenski wrote: > Wtf? Oracle guys, what JVM is this session going to use? > > https://oracleus.activeevents.com/2013/connect/sessionDetail.ww?SESSION_ID=5517 > > > On 09/08/2013, at 3:51 PM, Tobias Bley wrote: > >

Re: How to raise JavaFX iOS bugs?

2013-08-08 Thread Tobias Bley
Daniel, the question is: Which surprise will Oracle show on JavaOne 2013 in september? Maybe there is something official concerning JavaFX and iOS and Android…? Please take a look a the planned tracks: http://blog.software4java.com/?p=97 One track talks about „JavaSE in AOT mode“…so maybe we do

Re: current state of gradle script for Android?

2013-08-08 Thread Tobias Bley
: > Hi Tobi, > shouldn't be necessary to patch android.gradle file or set > ANDROID_CROSS_TOOLS_VER anymore. The latest changes resolve path to a > toolchain taking into account variants of NDK. Thank you for testing it. > > -Tomas > > On 08/01/2013 11:41 PM, Tobia

Fwd: current state of gradle script for Android?

2013-08-07 Thread Tobias Bley
Hey Danno, could you please merge the latest changes to your jfx78 project? Thank you very much! Tobi Anfang der weitergeleiteten Nachricht: > Von: "tomas.brandalik" > Betreff: Aw: current state of gradle script for Android? > Datum: 7. August 2013 10:15:25 MESZ > An

JavaFX for Android build is broken

2013-08-07 Thread Tobias Bley
Hi (Tomas), I tried to build JavaFX for Android again but was getting the follow build errors: /Applications/Developer/Java/open-jfx-graphics/rt/modules/graphics/src/main/native-glass/lens/android/android.c: In function 'Java_com_oracle_dalvik_FXActivity_00024InternalSurfaceView_onKeyEventNati

Re: current state of gradle script for Android?

2013-08-07 Thread Tobias Bley
/01/2013 11:41 PM, Tobias Bley wrote: >> Thanks Tomas, >> >> after changing android.gradle script line >> "defineProperty("ANDROID_CROSS_TOOLS_VER", "arm-linux-androideabi-4.4.3“)“ >> to "defineProperty("ANDROID_CROSS_TOOLS_VER&

Re: JavaFX and iOS - it will remain a dream

2013-08-07 Thread Tobias Bley
urvival does depend on it being viable on mobiles and tablets. > > All I can say is don't give up yet. I am certainly not giving up. I really > hope we see something at JavaOne this year that will please us all. > > It *has* to be this year! > > Felix > > &g

Fwd: hg: openjfx/8/graphics/rt: RT-32032 Android: VM hangs when application finishes.

2013-08-07 Thread Tobias Bley
Tomas, which VM do you mean in this bug report ;)? Tobi Anfang der weitergeleiteten Nachricht: > Von: hang...@oracle.com > Betreff: hg: openjfx/8/graphics/rt: RT-32032 Android: VM hangs when > application finishes. > Datum: 6. August 2013 08:33:26 MESZ > An: openjfx-dev@openjdk.java.net > >

How to get the content scale factor (hiDPI) on Mac on OpenJDK8?

2013-08-05 Thread Tobias Bley
With Apple JDK6 we can call the scale factor like this: toolkit.getDesktopProperty("apple.awt.contentScaleFactor“); Unfortunately thats not possible with JDK7/8. Is there another way to get the scale factor? Best regards, Tobi

Re: JavaFX On IOS Using RoboVM And Maven

2013-08-02 Thread Tobias Bley
Hi Daniel, thanks for your great work! One question: How can I use third party jar libraries? When I execute the „compile“ maven task, my third party libs are not found… Best, Tobi Am 01.08.2013 um 05:34 schrieb Daniel Zwolenski : > The RoboVM Maven plugin is now released with JFX support us

Re: current state of gradle script for Android?

2013-08-01 Thread Tobias Bley
ation)? Is there any demo code available? Best regards, Tobi Am 01.08.2013 um 16:00 schrieb tomas.brandalik : > The latest tools should be ok sdk ver. 22 and ndk r9. I have sdk 21.1 and > ndk r7c and r8e. > http://developer.android.com/sdk/index.html > http://developer.android.co

Re: current state of gradle script for Android?

2013-08-01 Thread Tobias Bley
GETS=android -PANDROID_SDK=/opt/android-sdk-linux > -PANDROID_NDK=/opt/android-ndk-r7c -PCOMPILE_GSTREAMER=false > -PSKIP_JAVADOC=true > Closed source parts web and font-t2k will be missing. > > -Tomas > > On 07/29/2013 11:22 PM, Tobias Bley wrote: >> Hi, >> >&g

Re: current state of gradle script for Android?

2013-07-31 Thread Tobias Bley
GETS=android -PANDROID_SDK=/opt/android-sdk-linux > -PANDROID_NDK=/opt/android-ndk-r7c -PCOMPILE_GSTREAMER=false > -PSKIP_JAVADOC=true > Closed source parts web and font-t2k will be missing. > > -Tomas > > On 07/29/2013 11:22 PM, Tobias Bley wrote: >> Hi, >> >> can

JavaFX and iOS - it will remain a dream

2013-07-30 Thread Tobias Bley
Hi, after many days trying to really build iOS apps with JavaFX and RoboVM or Avian I’m very frustrated because of the following things: Based on RoboVM, JavaFX on iOS runs unacceptable slow - I don’t know the reason - maybe it’s the rendering model of JavaFX - maybe it’s the currently unoptim

current state of gradle script for Android?

2013-07-29 Thread Tobias Bley
Hi, can anyone say something about the current state of the gradle android support? Is it possible to build OpenJFX for Android now via gradle? Best regards, Tobi

Re: very poor performance on iOS :(

2013-07-24 Thread Tobias Bley
sterday). If you can show the > output from the perf logger that would at least give some guidance as to > where the time is being spent. > > Richard > > On Jul 24, 2013, at 5:16 AM, Tobias Bley wrote: > > > Hi, > > > > i would like to start a discussion ab

very poor performance on iOS :(

2013-07-24 Thread Tobias Bley
Hi, i would like to start a discussion about the performance of JavaFX8 on iOS (via RoboVM). If you make a little app with just one toggle button and run it on iPhone4 (not simulator), the JavaFX rendering is very slow. So the button press is painted with a really noticeable delay. I don’t unde

Re: Raspberry Pi + JavaFX 3D demo

2013-07-16 Thread Tobias Bley
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

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

Re: Raspberry Pi + JavaFX 3D demo

2013-07-15 Thread Tobias Bley
orse than the > > CPU on an iPhone or iPad. Is the difference HotSpot vs. RoboVM? The > > graphics code being executed should be pretty much exactly the same, and I > > would expect the PowerVR to be able to handle this without any trouble. > > > > Richard > > > > O

iOS gradle script doesn't work anymore

2013-07-14 Thread Tobias Bley
Hi, When I try to build OpenJFX for iOS the following error occurs: * Where: Build file '/Applications/Developer/Java/open-jfx-bitbucket/openjfx-8-graphics-rt/build.gradle' line: 460 * What went wrong: A problem occurred evaluating script. > Error: missing tool packages: [ios-libs-05.tgz] Wh

Re: Raspberry Pi + JavaFX 3D demo

2013-07-12 Thread Tobias Bley
The performance is much better than JavaFX8 on iOS :( Am 12.07.2013 um 15:37 schrieb August Lammersdorf, InteractiveMesh : > Found this on YouTube: http://www.youtube.com/watch?v=-scxqJjTJKI > > August

Re: JavaFX8 on iPhone! It works!

2013-07-05 Thread Tobias Bley
Richard, the question is: Has Oracle a hidden Java8 VM for Android and iOS? Or how do you test your Android and iOS JavaFX implementation??? Am 05.07.2013 um 16:42 schrieb Richard Bair : > We have implementations for Android and iOS that are both functional on a > Java 8 VM. It looks like, bec

Re: JavaFX8 on iPhone! It works!

2013-07-05 Thread Tobias Bley
What is it that's not working, and isn't jfx suppose to run on android > as well? > > > > On 04/07/2013, at 11:53 PM, Tobias Bley wrote: > >> I published by blog post about using JavaFX8 and RoboVM to build a iOS app: >> http://blog.software4java.com/?

  1   2   >