Add ctor for making Pixmaps from user-provided slice

This commit is contained in:
Elias Batek 2024-01-07 21:52:41 +01:00
parent 9f792bdfeb
commit dfddea5960
1 changed files with 8 additions and 0 deletions

View File

@ -226,10 +226,18 @@ struct Pixmap {
@safe pure nothrow:
///
this(Size size) {
this.size = size;
}
///
this(Pixel[] data, int width) @nogc
in (data.length % width == 0) {
this.data = data;
this.width = width;
}
// undocumented: really shouldnt be used.
// carries the risks of `length` and `width` getting out of sync accidentally.
deprecated("Use `size` instead.")