Elias Batek
dfddea5960
Add ctor for making Pixmaps from user-provided slice
2024-01-07 21:57:46 +01:00
Adam D. Ruppe
cc36b00527
Merge pull request #416 from WebFreak001/patch-4
...
fix nanovega fallback fonts
2024-01-07 11:04:58 -05:00
Jan Jurzitza
19ca6e84ec
fix nanovega fallback fonts
...
adds documentation how to use them as well
2024-01-07 16:00:12 +00:00
Adam D. Ruppe
40739b4e0d
Merge pull request #415 from WebFreak001/patch-3
...
add MouseButtonLinear to sdpy
2024-01-06 16:40:36 -05:00
Jan Jurzitza
ec2b0577aa
add MouseButtonLinear to sdpy
2024-01-06 21:37:35 +00:00
Adam D. Ruppe
fa20b68161
Merge pull request #414 from analogjupiter/pixmaprenderer
...
Add OpenGL 1.x PixmapRenderer implementation
2024-01-04 20:28:01 -05:00
Elias Batek
4491bd0702
Comment glMatrixMode change in setupMatrix()
2024-01-05 02:23:36 +01:00
Elias Batek
cd6414b04f
Add OpenGL 1.x PixmapRenderer implementation
2024-01-05 02:19:00 +01:00
Elias Batek
95726831d1
Refactor glViewport() call
2024-01-05 02:11:50 +01:00
Adam D. Ruppe
4c5265202d
some stuff
2024-01-01 20:01:24 -05:00
Adam D. Ruppe
6c06540e11
note language fork
2024-01-01 19:56:16 -05:00
Adam D. Ruppe
65f3b4545f
note language fork
2024-01-01 19:40:19 -05:00
Adam D. Ruppe
9f792bdfeb
lol test too i guess
2023-12-30 19:26:17 -05:00
Adam D. Ruppe
ec062fab06
phobos nullable support
2023-12-30 19:23:24 -05:00
Adam D. Ruppe
7641aeb2dc
dangling else lol
2023-12-30 08:14:26 -05:00
Elias Batek
4a04a651f4
color: Replace components union with property functions
2023-12-30 02:42:26 +01:00
Adam D. Ruppe
533a20cbbb
Merge pull request #413 from analogjupiter/pixmappresenter-event
...
PixmapPresenter: Add window-resize event handler
2023-12-29 19:59:05 -05:00
Elias Batek
91c59c65b5
PixmapPresenter: Add window-resize event handler
2023-12-30 01:55:06 +01:00
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