WritableImage is of lower quality and larger in size than BufferedImage?

2014-08-16 Thread Anirvan Sarkar
I first created a BufferedImage using the Graphics2D API and then a similar WritableImage using GraphicsContext and Canvas.snapshot(null, null) method. The WritableImage is of lower quality and larger in size than BufferedImage. Is this a JavaFX bug or I am missing some RenderingHints for

JavaFX 8 Demos and Samples

2014-10-24 Thread Anirvan Sarkar
Can someone provide the link to JavaFX 8 Demos and Samples page? I found JavaFX 2.2.71 Demos and Samples from JDK 7 downloads http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html page. But I couldn't find one at JDK 8 downloads

Re: JavaFX 8 Demos and Samples

2014-10-24 Thread Anirvan Sarkar
downloadable from the JDK 8 downloads page. Specifically, Ensemble8 is in the demo/javafx_samples directory of the demos bundle. Thanks, Vadim On 24.10.2014 14:27, Anirvan Sarkar wrote: Can someone provide the link to JavaFX 8 Demos and Samples page? I found JavaFX 2.2.71 Demos

Re: Permutation of scene graph children

2014-12-01 Thread Anirvan Sarkar
Hi, java.util.List doesn't support a swap operation but there is Collections.swap(List, int, int) https://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#swap-java.util.List-int-int-for that. Also there exists a JIRA RT-39128 https://javafx-jira.kenai.com/browse/RT-39128 for getting

Re: OpenJFX mirror at BitBucket?

2015-03-17 Thread Anirvan Sarkar
Looks like the page https://wiki.openjdk.java.net/display/OpenJFX/Developer+Work+Flow is outdated. It links to the BitBucket repo and mentions that one of the ways to provide a patch is to create a pull request on BitBucket. On 18 March 2015 at 05:51, Jonathan Giles jonathan.gi...@oracle.com

Re: JavaFX JIRA issues moving to JBS

2015-04-16 Thread Anirvan Sarkar
On 15 April 2015 at 03:50, Kevin Rushforth kevin.rushfo...@oracle.com wrote: ... The issues currently in the RT project in JavaFX JIRA will be folded into the JDK project in JBS. What about the Scene Builder issues (DTL project in JavaFX JIRA)? Would they also be migrated to JBS? --

Re: JFX as an OSGi service?

2016-02-19 Thread Anirvan Sarkar
Hi Stephen, FYI, there is another way of initializing JavaFX runtime. Just use: new JFXPanel(); It is documented[1] that FX runtime is initialized when the first JFXPanel instance is constructed. Also JavaFX 9 will provide an official API to start the FX platform [2] [3]. [1]

Re: JEP 283: Enable GTK 3 on Linux

2016-02-19 Thread Anirvan Sarkar
Hi, One of the sub-task of this JEP is to 'Rework Swing GTK LnF to support GTK-3'. This seems something in common with another submitted JEP [1]: 'Modernize the GTK3 Look and Feel implementation'. So will these two JEP complement each other or will the other one be now redundant ? [1]

Re: JEP 283: Enable GTK 3 on Linux

2016-02-21 Thread Anirvan Sarkar
On 02/19/2016 07:43 AM, Kevin Rushforth wrote: > >> Current plan is to track all of the work for both JavaFX and Swing with >> this JEP. >> >> -- Kevin >> >> >> Anirvan Sarkar wrote: >> >>> Hi, >>> >>> One of the sub-task

Javadoc tool version used to build JavaFX documentation

2016-03-02 Thread Anirvan Sarkar
Hi, Is the Javadoc tool used to build JavaFX documentation not from the JDK used to build JavaFX ? If you view the javafx.event.Event 'Uses' webpage [1] source, you will see the comment: So it looks like the documentation is built using jdk1.8.0 while JavaFX itself is built using jdk1.8.0_40

Re: Javadoc tool version used to build JavaFX documentation

2016-03-02 Thread Anirvan Sarkar
jdk1.8.0_60. Created JBS enhancement issue [2] to update javadoc tool version to 1.8.0_60 for generating JavaFX documentation [1] : https://bugs.openjdk.java.net/browse/JDK-8072461 [2] : https://bugs.openjdk.java.net/browse/JDK-8151038 On 2 March 2016 at 17:56, Anirvan Sarkar <powers.a

Re: Matrox Graphics Cards Problems

2018-05-17 Thread Anirvan Sarkar
Hi Matthew, Please see the below file for blaclisted hardware on D3D. http://hg.openjdk.java.net/openjfx/jfx-dev/rt/file/9e0e0e65e642/modules/javafx.graphics/src/main/native-prism-d3d/D3DBadHardware.h Regards, Anirvan On Thu, 17 May 2018 at 11:04 PM, Matthew Elliot <

Re: Matrox Graphics Cards Problems

2018-05-18 Thread Anirvan Sarkar
penGL so could I install OpenGL on > a windows machine and try that pipeline? > Is this exclusion of all Matrox cards still valid? > > Thanks in advance, > Matt > > Sent from my phone. > > On 17/05/2018, at 5:15 PM, Anirvan Sarkar <powers.anir...@gmail.com> > w

Re: JDK-8210361: Add images to docs for public API classes of controls

2018-09-12 Thread Anirvan Sarkar
Hi Nir, Thanks for this RFE. Now other UI toolkits like GTK and QT have a separate gallery of controls[1][2]. I was considering to add something similar in JavaFX but I never got around to start working on it, mostly due to all the screenshots which is needed to be taken beforehand ! Since you

Re: Support "trust all" SSL context in OpenJFX 14

2020-04-08 Thread Anirvan Sarkar
Maybe it doesn't work due to JDK-8239595. It seems that HttpClient implementation does not use the default SSL context for its configuration [1]. There is an RFR mail to fix this [2][3]. [1] : https://bugs.openjdk.java.net/browse/JDK-8239595 [2] :

Re: JDK-8154847 : Windows content is blank when using StageStyle.UNIFIED

2020-08-17 Thread Anirvan Sarkar
Hi, I can see in the implementation that Platform.isSupported(ConditionalFeature.UNIFIED_WINDOW) is always false on Linux [1]. So it seems that the issue does not occur in Linux because StageStyle.UNIFIED is not supported there and so as per the specification [2] the StageStyle is downgraded to

Re: Mention of the CSS properties in JavaDocs

2022-02-15 Thread Anirvan Sarkar
JavaFX 2 provided a custom doclet [1] but this was not required since JavaFX 8 (JDK 8). If a custom doclet is introduced again, we need to modify build scripts / IDE settings, etc. which is not required since JDK 12 [2]. So I suppose going back to a custom doclet again will not be a preferable