Nikita Prokopov

Results 814 comments of Nikita Prokopov

BTW can you access artifacts from here? https://github.com/HumbleUI/JWM/actions/runs/1746324215 It builds jars on each commit, it just doesn’t deploy them to Maven Central

> macos code signing and generating windows executables I am gonna need something like this one day too, maybe I’ll learn a thing or two from your setup! > vscroll...

Re: caching layers, what you described sounds right. Just make sure to cache Image too, not requesting it from Surface on each frame Re: Skia debugger, I have not used...

Try `set-content-size` instead of `set-window-size`? Former is drawable area, latter is drawable area + window chrome. If you set window size, actual canvas will be a bit smaller because it...

I guess you need to figure out how not to create infinite loop. E.g. don’t do it if window is already of the correct size

Thanks! I created https://github.com/HumbleUI/JWM/issues/227 to track this. I would appreciate any help.

Yes I noticed that too. We’ll fix that eventually :)

Interesting! I have no idea what clj-refactor is or how does it work. If you ever figure out that the problem is or how example should be adjusted to avoid...

Good question! I would look into `ImageFilter::makeBlend`, specifically one of ``` /** Source trimmed inside destination. */ SRC_IN, /** Destination trimmed by source. */ DST_IN, ``` `BlendMode`s