summaryrefslogtreecommitdiff
path: root/src/libcamera/geometry.cpp
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2019-05-29 22:17:05 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2019-06-11 09:29:13 +0100
commitc544506e1ad85e21f90ddaf4fe6c75975e8234a1 (patch)
treee1147b4a1ad16563e2b5b1493e337972088f5d26 /src/libcamera/geometry.cpp
parent4232b60612515eb5e4949ab5fb4bd6fd352d1b3f (diff)
libcamera: geometry: Fix SizeRange constructor style
Match the style of the SizeRange() which specifies the hStep and vStep, and wrap the lines in pairs of min and max values. Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/geometry.cpp')
-rw-r--r--src/libcamera/geometry.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcamera/geometry.cpp b/src/libcamera/geometry.cpp
index 97c367bc..fb8f628a 100644
--- a/src/libcamera/geometry.cpp
+++ b/src/libcamera/geometry.cpp
@@ -197,7 +197,8 @@ bool operator<(const Size &lhs, const Size &rhs)
*/
/**
- * \fn SizeRange::SizeRange(unsigned int minW, unsigned int minH, unsigned int maxW, unsigned int maxH)
+ * \fn SizeRange::SizeRange(unsigned int minW, unsigned int minH,
+ * unsigned int maxW, unsigned int maxH)
* \brief Construct an initialized size range
* \param[in] minW The minimum width
* \param[in] minH The minimum height