Namespace for inputs.
More...
|
class | Controller |
| Input controller controls which inputs are currently active Implemented as a singleton. More...
|
|
class | Framebuffer |
| Input object that is renderer to a framebuffer. More...
|
|
class | Interface |
| Generic input interface. More...
|
|
class | List |
| Input List contains a list of inputs, accessible over an QString id Input List is the root input of a session's input tree. Input List is serializable via QDataStream. More...
|
|
class | TestImage |
| Abstract class for test images that are generated with a shader. More...
|
|
bool omni::input::operator== |
( |
List const & |
_lhs, |
|
|
List const & |
_rhs |
|
) |
| |
123 if (_lhs.currentId_ != _rhs.currentId_)
return false;
125 if (_lhs.size() != _rhs.size())
return false;
127 auto it = _lhs.begin();
128 auto jt = _rhs.begin();
130 for (; (it != _lhs.end()) && (jt != _rhs.end()); ++it, ++jt)
132 if (it->first != jt->first)
return false;
134 if (!it->second->equal(jt->second.get()))
return false;