(self, framedata, blit)
| 1167 | return self.new_frame_seq() |
| 1168 | |
| 1169 | def _draw_next_frame(self, framedata, blit): |
| 1170 | # Breaks down the drawing of the next frame into steps of pre- and |
| 1171 | # post- draw, as well as the drawing of the frame itself. |
| 1172 | self._pre_draw(framedata, blit) |
| 1173 | self._draw_frame(framedata) |
| 1174 | self._post_draw(framedata, blit) |
| 1175 | |
| 1176 | def _init_draw(self): |
| 1177 | # Initial draw to clear the frame. Also used by the blitting code |
no test coverage detected