mirror of https://github.com/adamdruppe/arsd.git
Rename scanSubPixmap() to scanArea()
This commit is contained in:
parent
0bdea48b9b
commit
7d39086857
|
@ -343,12 +343,15 @@ struct Pixmap {
|
||||||
/++
|
/++
|
||||||
Retrieves a rectangular subimage of the pixmap.
|
Retrieves a rectangular subimage of the pixmap.
|
||||||
+/
|
+/
|
||||||
inout(SubPixmap) scanSubPixmap(Point pos, Size size) inout {
|
inout(SubPixmap) scanArea(Point pos, Size size) inout {
|
||||||
return inout(SubPixmap)(this, size, pos);
|
return inout(SubPixmap)(this, size, pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// TODO: remove
|
/// TODO: remove
|
||||||
deprecated alias scan2D = scanSubPixmap;
|
deprecated alias scanSubPixmap = scanArea;
|
||||||
|
|
||||||
|
/// TODO: remove
|
||||||
|
deprecated alias scan2D = scanArea;
|
||||||
|
|
||||||
/++
|
/++
|
||||||
Retrieves the first line of the Pixmap.
|
Retrieves the first line of the Pixmap.
|
||||||
|
|
Loading…
Reference in New Issue