From 7d3908685781e7759390515ddbf48e323889a1c8 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Tue, 8 Oct 2024 00:22:35 +0200 Subject: [PATCH] Rename scanSubPixmap() to scanArea() --- pixmappaint.d | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 91ccefc..44a9825 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -343,12 +343,15 @@ struct 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); } /// TODO: remove - deprecated alias scan2D = scanSubPixmap; + deprecated alias scanSubPixmap = scanArea; + + /// TODO: remove + deprecated alias scan2D = scanArea; /++ Retrieves the first line of the Pixmap.