Improve Pixmap.clone()

This commit is contained in:
Elias Batek 2024-10-13 19:17:26 +02:00
parent 195d1b228c
commit 647c19997d
1 changed files with 5 additions and 5 deletions

View File

@ -477,13 +477,13 @@ struct Pixmap {
}
/++
Creates a $(I deep clone) of the Pixmap
Creates a $(I deep copy) of the Pixmap
+/
Pixmap clone() const {
auto c = Pixmap();
c.width = this.width;
c.data = this.data.dup;
return c;
return Pixmap(
this.data.dup,
this.width,
);
}
/++