Commit Graph

2363 Commits

Author SHA1 Message Date
Adam D. Ruppe bff4406eed Merge branch 'master' of github.com:adamdruppe/arsd 2023-12-29 19:43:50 -05:00
Adam D. Ruppe 60f3510352
Merge pull request #412 from analogjupiter/pixmappresenter-fix
Fix OpenGl3PixmapRenderer.reconfigure()
2023-12-29 19:43:29 -05:00
Elias Batek 748696d98e Fix OpenGl3PixmapRenderer.reconfigure() 2023-12-30 01:41:20 +01:00
Adam D. Ruppe dfeae3c53c should trigger the complete handler consistently 2023-12-29 12:15:47 -05:00
Adam D. Ruppe 15a29d49dd event loop wtf it didnt commit i hate git 2023-12-29 12:02:06 -05:00
Adam D. Ruppe 73d4cf9c12 bring in Jacob Carlborg's abandoned druntime PR stuff for objc blocks 2023-12-29 11:59:11 -05:00
Adam D. Ruppe e5e36e3d09 more support stuff from porting sdpy to use it 2023-12-29 11:59:11 -05:00
Adam D. Ruppe 1f1f462e0f
Merge pull request #411 from analogjupiter/pixmappresenter
PixmapPresenter overhaul
2023-12-29 11:53:32 -05:00
Elias Batek 9756f48dee Rename "integerFP" scaling mode to "intHybrid" 2023-12-27 18:19:35 +01:00
Elias Batek 8f6f14dcfc Fix length/width/height bugs in Pixmap 2023-12-27 18:04:10 +01:00
Elias Batek 0d76beb550 Use more typeCast!T in pixmappresenter 2023-12-27 18:01:34 +01:00
Elias Batek 115f11a037 Advertise toggleFullscreen() in example code 2023-12-27 17:55:32 +01:00
Elias Batek 48c24ae56d Add toggleFullscreen() function 2023-12-27 17:54:59 +01:00
Elias Batek 2a31c43ad6 Improve pixmappresenter documentation 2023-12-27 17:54:34 +01:00
Elias Batek 5a159c52ac Rename PresenterObjects to PresenterObjectsContainer 2023-12-27 17:22:17 +01:00
Elias Batek fea3ea1ab0 Refactor WantsOpenGl struct 2023-12-27 17:07:58 +01:00
Elias Batek 604d806c1e Rename PixelBuffer to Pixmap 2023-12-27 17:06:29 +01:00
Elias Batek c9b6c20220 Rename PixelRenderer to PixmapRenderer 2023-12-27 17:04:32 +01:00
Adam D. Ruppe e18fb69779 Try to resolve random crash on Windows
The debugger tells me the Invoke method is accessing an invalid, but
non-null pointer. This appears to be a use-after-free delegate context
pointer. This is not easy to reproduce - even with the browser, I'd have
to open and close tons of windows and trigger specific callbacks to get
the behavior. (I found the best one to get it was the status text
changed event out of WebView2, probably because it uses a member
variable without any explicit local.)

I suspect it has to do with the delegate trying to capture both `this`
and other local variables at the same time. I couldn't confirm this, but
the theory is that normally, when a delegate captures a local variable,
the compiler places it in an allocated heap block instead of on the
stack, but perhaps `this` gets different treatment and it is wiped out
or the block is GC'd or something. (The AddRef does GC.addRoot to the
containing class that had the delegate member, so that should have
prevented it from disappearing, but it is possible I did it wrong.)

Nevertheless, I recall having trouble with this in the past as well,
and decided perhaps the best thing to do is to just take control of
which context, exactly, is passed and retained. Hence the conversion to
`function` so I can hold on to it better. This makes things harder to
use - especially since IFTI wouldn't pick up the usage correctly - but
meh, I'm mostly just passing the class handles down so not that bad.

Not 100% sure this actually even fixed the crash; it hasn't happened
again since using it, but that's no guarantee given how difficult it is
to reproduce.
2023-12-24 19:46:46 -05:00
Adam D. Ruppe 065846dab8 make event backup ui locks less likely 2023-12-24 07:56:49 -05:00
Adam D. Ruppe f017816d05
Merge pull request #409 from analogjupiter/pixelpresenter
Add Pixmap Presenter module
2023-12-23 18:41:00 -05:00
Elias Batek 63578639d9 Cleanup to-do list 2023-12-24 00:30:17 +01:00
Elias Batek a4ed17e0a1 Add minimal PixmapPresenter example 2023-12-24 00:16:53 +01:00
Elias Batek 61e7df3e44 Improve pixmappresenter example code 2023-12-24 00:12:00 +01:00
Elias Batek f9e029b9cd Rebrand PixelPresenter to PixmapPresenter 2023-12-24 00:09:21 +01:00
Elias Batek d57ecc9cb9 Improve documentation 2023-12-24 00:01:48 +01:00
Elias Batek 0d81bbff41 Overhaul pixelpresenter’s timing 2023-12-23 23:56:19 +01:00
Elias Batek 8ffc0b327d Implement Timer.changeTime() for Linux targets 2023-12-23 23:45:36 +01:00
Elias Batek 7bd2675b1f Implement hybrid ("int" up, "contain" down) scaling mode 2023-12-23 15:01:12 +01:00
Elias Batek 92796f8e29 Update description of pixelpresenter in DUB recipe 2023-12-23 14:23:40 +01:00
Elias Batek d9b25be212 Add missing '{' 2023-12-22 03:45:08 +01:00
Elias Batek a7401aa1c3 Remove dangling "Let's" from example code 2023-12-22 03:37:21 +01:00
Elias Batek 7b481e2d32 Add code examples to pixelpresenter 2023-12-22 03:29:47 +01:00
Elias Batek f29fcd25d8 Add convenience constructors to PixelPresenter 2023-12-22 03:29:17 +01:00
Elias Batek 3f0e52f875 Fix pixelpresenter not passing along event-handlers 2023-12-22 02:21:56 +01:00
Adam D. Ruppe e761ceff91 add missing func 2023-12-21 14:00:11 -05:00
Elias Batek 1d2e57f61a Implement OpenGL 3 renderer for pixelpresenter 2023-12-21 02:47:45 +01:00
Elias Batek 7266c4883a Add arsd.pixelpresenter 2023-12-21 02:47:45 +01:00
Adam D. Ruppe 5d626d3358 a few little edits to the PR 2023-12-19 21:26:44 -05:00
Adam D. Ruppe d31ca0b91f stuff for my browser 2023-12-19 21:14:20 -05:00
Adam D. Ruppe cacb32aa46 try to make jni work better on mac 2023-12-19 21:14:20 -05:00
Adam D. Ruppe 1b9c97d101
Merge pull request #408 from analogjupiter/pr407-proper
Fix ColorF(Color) constructor
2023-12-19 21:12:10 -05:00
Elias Batek 3a9f0866f0 Fix ColorF(Color) constructor 2023-12-20 03:08:42 +01:00
Adam D. Ruppe 2229a1c249
Merge pull request #405 from analogjupiter/pixel-color-I
color: Extend point and size
2023-12-19 21:04:10 -05:00
Adam D. Ruppe c9bc198d62
Merge pull request #407 from analogjupiter/colorf
color: Implement floating-point representation struct
2023-12-19 21:03:55 -05:00
Elias Batek 9781eefa4a Implement floating-point color representation 2023-12-20 02:48:26 +01:00
Elias Batek fa1d03d43a color: Extend point and size 2023-12-19 00:37:50 +01:00
Adam D. Ruppe 95ea3af2b1 update bindings to MSFT webview2 2023-12-16 13:17:59 -05:00
Adam D. Ruppe 1e04f8e683 how the heck did i put all these in here and not have it fail building before 2023-12-15 20:24:35 -05:00
Adam D. Ruppe fcc840df4e better TextDisplay = better MessageBox on linux 2023-12-11 20:59:52 -05:00