are not available out-of-the-box on all systems and keyboards, and should
therefore not be used in files committed to CVS. This makes them well
suited for local key bindings, as they aren't likely to get overwritten
with later releases. SDL supports Meta and Super, OSG supports only Meta,
and GLUT supports neither.
(Somehow this part escaped the previous commit. :-)
if (modifiers & (osgGA::GUIEventAdapter::MODKEY_LEFT_ALT |
osgGA::GUIEventAdapter::MODKEY_RIGHT_ALT))
result |= KEYMOD_ALT;
+ if (modifiers & (osgGA::GUIEventAdapter::MODKEY_LEFT_META |
+ osgGA::GUIEventAdapter::MODKEY_RIGHT_META))
+ result |= KEYMOD_META;
return result;
}