aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/devdraw/srv.c
AgeCommit message (Collapse)AuthorFilesLines
2020-07-22devdraw, libdraw: fix memory leaks by freeing getns() malloced string (#431)Igor Böhm1-2/+6
2020-05-18devdraw, libdraw: handle keyboard runes > U+FFFFRuss Cox1-2/+7
Runes in Plan 9 were limited to the 16-bit BMP when I drew up the RPC protocol between graphical programs and devdraw a long time ago. Now that they can be 32-bit, use a 32-bit wire encoding too. A new message number to avoid problems with other clients (like 9fans.net/go). Add keyboard shortcut alt : , for U+1F602, face with tears of joy, to test that it all works.
2020-05-17devdraw: use indirect impl interfaceRuss Cox1-11/+15
Setting up for a real window system.
2020-01-15devdraw: actually send resize event on resizeRuss Cox1-0/+7
Fixes #340. Fixes #343.
2020-01-14devdraw: notify window resize promptly on x11Russ Cox1-0/+18
Fixes #339.
2020-01-13devdraw: x11 working againRuss Cox1-1/+1
Need to think a bit more about locking, but overall it's a working devdraw. Multiclient mode may not be working but nothing is using it yet.
2020-01-13devdraw: multiclient modeRuss Cox1-35/+104
2020-01-13devdraw: more cleanup, clearer lockingRuss Cox1-44/+94
2020-01-13devdraw: refactor, clean up mac screenRuss Cox1-0/+402
Also turn mac-srv.c into a generic srv.c, so we can remove the duplication with x11-srv.c.