Draws a series of instructions
(&'a mut self, drawing: DrawIter)
| 65 | /// Draws a series of instructions |
| 66 | /// |
| 67 | fn draw_list<'a, DrawIter: 'a+IntoIterator<Item=Draw>>(&'a mut self, drawing: DrawIter) { |
| 68 | for d in drawing.into_iter() { |
| 69 | self.draw(d); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | /// |
| 74 | /// Loads an image from an IO stream into a texture, returning the size (or None if the image can't be read for any reason) |
no test coverage detected