| 16 | namespace sibr |
| 17 | { |
| 18 | ViewBase::ViewBase(const unsigned int w, const unsigned int h) |
| 19 | { |
| 20 | _resolution = Vector2i(w, h); |
| 21 | _whichRT = 6; // poisson filling |
| 22 | } |
| 23 | |
| 24 | void ViewBase::onUpdate(Input& input, const Viewport & vp) { |
| 25 | onUpdate(input); |
nothing calls this directly
no outgoing calls
no test coverage detected