| 11 | struct Monitor { |
| 12 | public: |
| 13 | Monitor( DisplayRef display, Colorf color, bool mainDisplay ) |
| 14 | : mArea( display->getBounds() ), mColor( color ), mMainDisplay( mainDisplay ) |
| 15 | { |
| 16 | app::console() << display->getName() << ": " << mArea << " contentScale: " << display->getContentScale() << std::endl; |
| 17 | } |
| 18 | |
| 19 | void draw() { |
| 20 | gl::color( mColor * 0.25f ); |
nothing calls this directly
no test coverage detected