diff options
author | Sven Gothel <[email protected]> | 2023-03-08 05:35:29 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-08 05:35:29 +0100 |
commit | adfe4abec47313d2c533096f6c3e9a94d2fc4571 (patch) | |
tree | 3e7b8a5ecdf8674123e3d8f47a4bd425f548e19b /make | |
parent | b7ad260cd68b0cbbe1e61b95ed8c90aa97487186 (diff) |
Graph GPUUISceneNewtDemo: Filter out all FSAA (multisample) caps if undesired (Graph VBAA + MSAA); Add NonFSAAGLCapabilitiesChooser
Notable: On RaspiPi4b w/ Mesa3D's Broadcom/VC driver,
the chosen capabilities is a multisamnple one even though not requested.
This causes
- extra performance overhead
- doubled AA: 1st our VBAA, then the FSAA (multisample) -> loss of sharpness
Simply dropping the undersired FSAA helps and ups performance
on the Raspi board (22 -> 35 fps).
Diffstat (limited to 'make')
-rw-r--r-- | make/build-jogl.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build-jogl.xml b/make/build-jogl.xml index 720607077..7a08abe56 100644 --- a/make/build-jogl.xml +++ b/make/build-jogl.xml @@ -158,7 +158,7 @@ value="com/jogamp/opengl/**/swt/**"/> <property name="java.part.util" - value="com/jogamp/opengl/util/texture/** com/jogamp/opengl/util/av/* com/jogamp/opengl/util/packrect/** com/jogamp/opengl/util/PNG* com/jogamp/opengl/util/stereo/** jogamp/opengl/util/av/** jogamp/opengl/util/jpeg/** jogamp/opengl/util/pngj/** jogamp/opengl/util/stereo/**"/> + value="com/jogamp/opengl/util/caps/** com/jogamp/opengl/util/texture/** com/jogamp/opengl/util/av/* com/jogamp/opengl/util/packrect/** com/jogamp/opengl/util/PNG* com/jogamp/opengl/util/stereo/** jogamp/opengl/util/av/** jogamp/opengl/util/jpeg/** jogamp/opengl/util/pngj/** jogamp/opengl/util/stereo/**"/> <property name="java.part.util.awt" value="com/jogamp/opengl/util/**/awt/**"/> |