Merge pull request #417 from analogjupiter/pixmap-ctor

Add ctor for making Pixmaps from user-provided slice
This commit is contained in:
Adam D. Ruppe 2024-01-07 16:04:38 -05:00 committed by GitHub
commit 76cd34dd85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.")