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 {
|
Pixmap clone() const {
|
||||||
auto c = Pixmap();
|
return Pixmap(
|
||||||
c.width = this.width;
|
this.data.dup,
|
||||||
c.data = this.data.dup;
|
this.width,
|
||||||
return c;
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
|
Loading…
Reference in New Issue