aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/x11.h
AgeCommit message (Collapse)AuthorFilesLines
2019-07-31X11: Support UTF8 in window titlesJP Cimalando1-0/+2
It's possible that this does bad things if a UTF8 string is used on a system that does not support it (because XStoreName is still called), but I have no idea how likely this scenario is. Leaving it this way because it means the ASCII case will still work everywhere, and it's easy enough to avoid if this is a problem.
2019-07-29Reorganize source to separate private implementation detailsDavid Robillard1-0/+41
Taking a page from C++ convention, where "detail" is for things that should not be included in user code.