Questions tagged [openfx]

OpenFX is an open standard for visual effects plug-ins.

OpenFX is an open standard for visual effects plug-ins. Documentation and example code available from http://openfx.sourceforge.net/ and information about the OpenFX Association from http://openeffects.org/

15 questions
10
votes
1 answer

maven run and build with --add-exports

I try to run and my application with InteliJ and Maven on a Win 10 machine. If i run mvn clean javafx:run My GUI starts but if i use a Textfield from org.controlsfx.control.textfield.TextFields i encounter a problem Exception in thread "JavaFX…
Martin_1986
  • 151
  • 1
  • 1
  • 7
3
votes
0 answers

JFoenix cannot access cannot access class com.sun.javafx.scene.NodeHelper

I would like to use JFoenix but when I want to use a JFXProgressBar or JFXSpinner I have this error : Caused by: java.lang.IllegalAccessError: class com.jfoenix.skins.JFXProgressBarSkin (in unnamed module @0x6aac0b03) cannot access class…
Adfop
  • 67
  • 4
2
votes
0 answers

Get a clip's file path from OpenFX Plugin

I'm just starting to dabble in OFX Plugin development with Rust, and was wondering if there's a way to get a clip's file path? Obviously OFX Plugins can be used in nodes, transitions, or other places where a clip's file path wouldn't make any sense,…
user2950509
  • 1,018
  • 2
  • 14
  • 37
2
votes
1 answer

How can I access the contents of a MTLBuffer after GPU rendering?

I'm working on an OpenFX plugin to process images in grading/post-production software. All my processing is done in a series of Metal kernel functions. The image is sent to the GPU as buffers (float array), one for the input and one for the…
plmrn
  • 21
  • 1
2
votes
2 answers

java.lang.NoClassDefFoundError: io/reactivex/subjects/Subject when building jar in Intellij Idea (gradle + JavaFX 11)

I am running some app with JavaFX 11 (OpenFX). The app is written in IntellijIdea and built with gradle. When running in IDE everything's ok. When building a jar it builds successfully but when I try to execute it I get an error: Exception in thread…
Dmitry K.
  • 193
  • 1
  • 1
  • 8
2
votes
1 answer

Create OpenCL Context from cl_context without taking ownership

I'm creating an OpenFX plugin to do some image processing for a VR system. As both our existing processing code, and the host the plugin is intended for, are based on OpenCL, the host developers have given me an extension to OFX to share the OpenCL…
Nick C
  • 319
  • 8
  • 23
1
vote
1 answer

JavaFX Maven Project cant be started

I receive the followung error when i want to start my simple javafx project using the command prompt: mvn javafx:run. I´m currently using java 19, javafx version 19 and windows 10. Error initializing QuantumRenderer: no suitable pipeline…
Thriest
  • 44
  • 5
1
vote
0 answers

Which version of controlsfx support with OpenFX and OpenJDK 11?

I'm using OpenFX 11, OpenJDK 11 and controlsfx 8.40.15 library Getting Caused by: java.lang.NoSuchMethodError: 'java.util.Iterator javafx.stage.Window.impl_getWindows()' while execute following code. Notifications notifications =…
Hemlata
  • 367
  • 1
  • 3
  • 13
1
vote
1 answer

Running OFX Plugins

I am starting a new project at the university I attend to develop OpenFX plugins for video editing software. I currently own Sony Vegas Pro 13, Edius, Premiere, and HitFilm 3 Pro. In order to test any OpenFX program, I have to open the dll in one of…
William Callahan
  • 630
  • 7
  • 20
0
votes
1 answer

Debug OpenFX plugins in VEGAS Pro

I'm creating an OpenFX plugin in C++, and using it on Vegas Pro 17 right now. The plugin works until I try to call functions from a static library (i.e: zlib or any other libraries). I attached the Visual Studio debugger to the Vegas Pro application…
Iswenzz
  • 1
  • 1
  • 2
0
votes
0 answers

Unable to start JAVAFX start

I am trying to start a javafx window and whenever I run it, I get java.lang.reflect.InaccessibleObjectException: Unable to make field private javafx.scene.web.WebView com.vendify.FX.FXMLDocumentController.webView accessible: module com.vendify.FX…
Jason Chan
  • 193
  • 1
  • 3
  • 11
0
votes
0 answers

FXCollections in over Android

I want to use FXCollections (ListProperty) over Android Studio. I implemented the needed dependency like this: implementation group: 'org.openjfx', name: 'javafx-controls', version: '16-ea+7 but I still am not able to use them. Does anyone have any…
NoteFox
  • 33
  • 5
0
votes
0 answers

Clip (truncate) 3D shape using OpenFX

I need to clip 3D shapes for group of the object. I have a Box and some 3D shapes (for example Sphere) inside Box, I want to clip this box that all shape parts, which outside the box were truncated. I tried setClip method Group root = new…
rpc1
  • 688
  • 10
  • 23
0
votes
1 answer

Debugging OpenFX plugins

I am creating a visual effects plug-in using OpenFX. I have followed the programming guides from the official documentation. However, I didn't find anything relating to debugging of OpenFX plugins. I am looking for some specific methods for…
Pieter Meiresone
  • 1,910
  • 1
  • 22
  • 22
0
votes
0 answers

C/C++ code is much slower when executed within OpenFX

I have a segmentation algorithm written in C/C++ that makes extensive use of C pointers, in order to access linked lists of structures, which are calloc'ed in the beginning of the programme. This algorithm takes about 3 sec. to run on Ubuntu…
capstain
  • 85
  • 1
  • 9