summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHirokazu Honda <hiroh@chromium.org>2021-08-31 06:02:24 +0900
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-08-31 15:18:53 +0300
commit75df3c71397ffdd61568b19157d327284c6d3a7f (patch)
tree74df82545181d39c013df535d1ea7fad57344dd1 /include
parent1c877bd8684d8e7743310d0b124ce0f9bf3aee79 (diff)
libcamera: mapped_framebuffer: Rename maps() to planes()
MappedFrameBuffer::maps() returns planes_. This renames the function name to planes(). Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r--include/libcamera/internal/mapped_framebuffer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libcamera/internal/mapped_framebuffer.h b/include/libcamera/internal/mapped_framebuffer.h
index 42479541..70ffbcbe 100644
--- a/include/libcamera/internal/mapped_framebuffer.h
+++ b/include/libcamera/internal/mapped_framebuffer.h
@@ -30,8 +30,7 @@ public:
bool isValid() const { return error_ == 0; }
int error() const { return error_; }
- /* \todo rename to planes(). */
- const std::vector<Plane> &maps() const { return planes_; }
+ const std::vector<Plane> &planes() const { return planes_; }
protected:
MappedBuffer();