Re: [platform-dev] reference swt in a maven build

2021-06-22 Thread Tom Schindl via platform-dev
just to build you can use whatever platform binary you want or what am I missing? To run tests you naturally have to have the correct one. Tom Am 22.06.21 um 10:52 schrieb Stefan Kowski: Hi, I am using this definitions in my standalone SWT/JFace apps: Parent pom.xml:                   

Re: [platform-dev] most performant way to paint a (platform-specific) pixel-array

2021-04-21 Thread Tom Schindl via platform-dev
did you look at skija which is built on top of skia is what is powering Chrome and Firefox so it should work very well cross-platform. On Windows you have the possibility to use Angle to not suffer from bad opengl drivers and they have a CPU mode as well. Tom Am 21.04.21 um 05:32 schrieb

Re: [platform-dev] canonical way to handle optional dependencies

2021-04-15 Thread Tom Schindl via platform-dev
Hi, An option to ban the offending guy from the codebase would be to move the offending class to a fragment. Let's say we have MyBundle + my.class.UILeaker - methodA(String) - methodB(String) - leakMethod(Shell) We could refactor it to: ---8<--- MyBundle +

Re: [platform-dev] Extensibility of the application model

2021-04-15 Thread Tom Schindl via platform-dev
Hi, I tend to disagree that we only want to contribute static data, if we use a service approach, we could eg in future add Predicate-Support (eg only merge that feature if you starting on locale-xyz, ...). I think we should provide ONE extension story and not multiple who are not really