Display the current frame.
(self)
| 167 | |
| 168 | # ========== FRAME MANAGEMENT ========== |
| 169 | def flip(self): |
| 170 | """Display the current frame.""" |
| 171 | self._draw_calls += 1 |
| 172 | if VERBOSE and self._draw_calls % 10 == 0: |
| 173 | print(f"[MockPager] flip() - frame #{self._draw_calls}") |
| 174 | |
| 175 | def clear(self, color=0): |
| 176 | """Clear screen to color.""" |