Re: openjfx-8u20-b23: Stuck in monocle build for armv7hf

2014-07-31 Thread Prasant J
On Thu, Jul 31, 2014 at 10:10 AM, Prasant J pj0...@gmail.com wrote: On Wed, Jul 30, 2014 at 11:16 PM, Lisa Selle lisa.se...@oracle.com wrote: How did you install your arm toolchain? I'm using yocto (poky distribution) for my iMX6. I can build my own SDK (toolchain). I'm using that. I may

Re: Skin layoutChildren: when to get bounds of child nodes?

2014-07-31 Thread Werner Lehmann
Hi Martin, On 30.07.2014 17:39, Martin Sladecek wrote: I assume you don't change child1 Nodes, so it should work. I may add/insert such nodes but in that case I take the easy route and simply rebuild the complete hbox. Yeah, one problem with layouts is when you want to do some layout that

Re: [API REVIEW REQUEST] RT-19659 - [TabPane] Support for draggable tabs

2014-07-31 Thread Tom Schindl
Hi, Please see a revised full blown API on the JIRA ticket. See https://javafx-jira.kenai.com/browse/RT-19659 I think the last API addresses all issues you and Scott have. I still think the 3-Boolean API proposed would be suffient for u40 and the Callback-API could be introduced later to give

Re: openjfx-8u20-b23: Stuck in monocle build for armv7hf

2014-07-31 Thread Daniel Blaukopf
Hi Prasant, I suggest you modify the following line in bin/pkg-config in your SDK directory: export PKG_CONFIG_LIBDIR=${SYSROOT}/usr/lib/arm-linux-gnueabihf/pkgconfig:${SYSROOT}/usr/lib/pkgconfig:${SYSROOT}/usr/share/pkgconfig .. so that it includes the path to your Pango package index.

[8u26] Review request : RT-38144: Add Single Touch Non-Fullscreen Test

2014-07-31 Thread Seeon Birger
Daniel, Please review the proposed fix for https://javafx-jira.kenai.com/browse/RT-38144 Webrev: http://cr.openjdk.java.net/~sbirger/RT-38144/webrev/ Thanks, Seeon

Re: openjfx-8u20-b23: Stuck in monocle build for armv7hf

2014-07-31 Thread Prasant J
On Thu, Jul 31, 2014 at 6:41 PM, Daniel Blaukopf daniel.blauk...@oracle.com wrote: Hi Prasant, I suggest you modify the following line in bin/pkg-config in your SDK directory: export

Re: openjfx-8u20-b23: Stuck in monocle build for armv7hf

2014-07-31 Thread Kevin Rushforth
I think Daniel might have meant this file in your repo: buildSrc/crosslibs/pkg-config -- Kevin Prasant J wrote: On Thu, Jul 31, 2014 at 6:41 PM, Daniel Blaukopf daniel.blauk...@oracle.com wrote: Hi Prasant, I suggest you modify the following line in bin/pkg-config in your SDK directory:

hg: openjfx/8u20/rt: Added tag 8u20-b26 for changeset e56a8bbcba20

2014-07-31 Thread hang . vo
Changeset: 292cf1a8bc82 Author:hudson Date: 2014-07-31 08:05 -0700 URL: http://hg.openjdk.java.net/openjfx/8u20/rt/rev/292cf1a8bc82 Added tag 8u20-b26 for changeset e56a8bbcba20 ! .hgtags

hg: openjfx/8u-dev/rt: [TOYS] Improve HelloText to test for line/sentence/paragraph

2014-07-31 Thread felipe . heidrich
Changeset: 01d4bbc663bf Author:Felipe Heidrich felipe.heidr...@oracle.com Date: 2014-07-31 10:17 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/01d4bbc663bf [TOYS] Improve HelloText to test for line/sentence/paragraph !

hg: openjfx/8u-dev/rt: 2 new changesets

2014-07-31 Thread david . grieve
Changeset: 101968b1eef0 Author:David Grievedavid.gri...@oracle.com Date: 2014-07-31 14:37 -0400 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/101968b1eef0 RT-36510: [CSS] Reduce CssMetaData boilerplate code !

How to learn the identity of the graphics card?

2014-07-31 Thread Mike Hearn
I'd like to change my animations depending on whether the users GPU can keep up. For now, I'm OK with some manual string matching on adapter IDs. I see no way in JavaFX to find out what hardware I'm on. Is there a different/other way to get this data, via some other Java API?

3D Map Master Released into the iTunes Store...

2014-07-31 Thread Tony Anecito
Hi Danno OpenJFX team, Today 3D Map Master was released into the iTunes Store. I wanted to thank Danno and the team for helping me to get it packaged properly. This is really important because this is a SaaS using Java (Swing JavaFX). I use Restful 2.x web services and a Casandra BigData

Re: How to learn the identity of the graphics card?

2014-07-31 Thread Kevin Rushforth
There is no way to do this through the API (or any other public API that I am aware of). In general, this is discouraged because it leads to non-portable code. Would it be feasible for you to do some measurements / calibration on the system and make the determination based on measured speed?

Re: How to learn the identity of the graphics card?

2014-07-31 Thread Mike Hearn
Would it be feasible for you to do some measurements / calibration on the system and make the determination based on measured speed? That seems more to the point anyway. I don't know how to do that without actually drawing to the screen, which I don't want to do.

Re: How to learn the identity of the graphics card?

2014-07-31 Thread Kevin Rushforth
Yeah, that would be a bit of a problem. Without doing something like that, though, it would just be an approximation, since the performance of animation depends on the complexity of the geometry, the performance of the GPU, the performance of the CPU, etc. -- Kevin Mike Hearn wrote:

Re: How to learn the identity of the graphics card?

2014-07-31 Thread Scott Palmer
I believe it is possible, though not through public API, to determine if you are using the software pipeline or not. If that isn't enough, how about just adapt at runtime by starting out with the more demanding animations and falling back automatically if the framerate doesn't meet your minimum

Re: [8u40] Review request: RT-38074: [macosx] Separate QTKit platform code from core media code so it can be removed for MAS

2014-07-31 Thread David DeHaven
Ping Kevin, Kirill? (how many reviewers do I need these days?) -DrD- JIRA Issue: https://javafx-jira.kenai.com/browse/RT-38074 Latest webrev: http://cr.openjdk.java.net/~ddehaven/RT-38074/rt.2/ Removed new makefile (eyesore), cleaned up/enhanced existing Makefile, fixed a compiler

Re: How to learn the identity of the graphics card?

2014-07-31 Thread Kevin Rushforth
Scott is correct about the determining of the SW pipeline. To add to that, if knowing whether you are running on SW is sufficient, you can assume (for now as well as the foreseeable future) that 3D is supported only when running on a HW pipeline. So checking for

Re: Milestone moved: M1 is now Aug 11, 2014

2014-07-31 Thread Kevin Rushforth
As a reminder, we will be in rampdown mode for the week prior to the Aug 11 M1 milestone build. This means that starting on Monday, Aug 4, you need an additional +1 from one of the leads. We are likely to be more liberal about what goes in this next week since this is the first milestone, and