mirror of https://github.com/adamdruppe/arsd.git
Improve Pixmap.clone()
This commit is contained in:
parent
195d1b228c
commit
647c19997d
|
@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
/++
|
||||
|
|
Loading…
Reference in New Issue