public void draw(RenderWindow window) {
    super.draw(window);
    window.setView(m_currentView);

    m_petriDish.draw(window);

    window.setView(m_defaultView);

    window.draw(m_timeText);

    if (m_showGps) window.draw(m_fpsText);
  }