TheBuzzSaw / XPG

cross-platform gaming
1 stars 0 forks source link

Remove std::map from X11 implementation. #4

Open TheBuzzSaw opened 11 years ago

TheBuzzSaw commented 11 years ago

Currently, the X11 event loop uses an std::map to connect X11 window handles to WindowMeta data. This map needs to be replaced either by a custom map structure or by associating user data with each window instance (like Win32 is able to to). The core code is to use no STL at all.