RFR: 8320563: Remove D3D9 code paths in favor of D3D9Ex
Lukasz Kostyra
lkostyra at openjdk.org
Fri Apr 26 07:40:42 UTC 2024
On Tue, 23 Apr 2024 10:33:58 GMT, Lukasz Kostyra <lkostyra at openjdk.org> wrote:
> JFX minimum requirements guarantee 9Ex availability, so old non-Ex paths are no longer needed.
>
> In multiple parts (ex. Mesh, Graphics, etc.) where the Device is acquired I changed the type to explicitly use `IDirect3DDevice9Ex`. Technically it doesn't matter much (`IDirect3DDevice9Ex` inherits `IDirect3DDevice` - it was leveraged to transparently use the Ex device in the backend) but now we don't have the non-Ex device, so that keeps it a bit more consistent and clear IMO.
>
> Verified by running tests on Windows 11, did not notice any regressions. Unfortunately I have no way to test this on older systems.
I also noticed there's a property in Prism settings called `disableD3D9Ex` - I will also remove it as it is now redundant.
-------------
PR Comment: https://git.openjdk.org/jfx/pull/1445#issuecomment-2078809190
More information about the openjfx-dev
mailing list