aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/devdraw/srv.c
AgeCommit message (Collapse)AuthorFilesLines
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.