| 42 | } |
| 43 | |
| 44 | bool operator==(const OniVideoMode& left, const OniVideoMode& right) |
| 45 | { |
| 46 | return (left.pixelFormat == right.pixelFormat && left.resolutionX == right.resolutionX |
| 47 | && left.resolutionY == right.resolutionY && left.fps == right.fps); |
| 48 | } |
| 49 | |
| 50 | bool operator<(const OniVideoMode& left, const OniVideoMode& right) |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected