(self, framedata, blit)
| 1179 | self._draw_was_started = True |
| 1180 | |
| 1181 | def _pre_draw(self, framedata, blit): |
| 1182 | # Perform any cleaning or whatnot before the drawing of the frame. |
| 1183 | # This default implementation allows blit to clear the frame. |
| 1184 | if blit: |
| 1185 | self._blit_clear(self._drawn_artists) |
| 1186 | |
| 1187 | def _draw_frame(self, framedata): |
| 1188 | # Performs actual drawing of the frame. |
no test coverage detected