| 664 | */ |
| 665 | |
| 666 | PenArray::PenArray(unsigned int bufwidth, unsigned int bufheight) |
| 667 | :dimx(bufwidth), dimy(bufheight), static_alloc(false) |
| 668 | { |
| 669 | buffer = new Pen[bufwidth * bufheight]; |
| 670 | clear(); |
| 671 | } |
| 672 | |
| 673 | PenArray::PenArray(unsigned int bufwidth, unsigned int bufheight, void *buf) |
| 674 | :dimx(bufwidth), dimy(bufheight), static_alloc(true) |