* Construct a new image buffer * @param height Height of the new image. * @param width Width of the new image. */
| 164 | * @param width Width of the new image. |
| 165 | */ |
| 166 | void create(int height, int width) |
| 167 | { |
| 168 | deallocate(); |
| 169 | allocate(width, height); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Copy image data to the provided matrix. |
no outgoing calls
no test coverage detected