summaryrefslogtreecommitdiff
path: root/src/libcamera/geometry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/geometry.cpp')
-rw-r--r--src/libcamera/geometry.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libcamera/geometry.cpp b/src/libcamera/geometry.cpp
index c8aa05f5..97c367bc 100644
--- a/src/libcamera/geometry.cpp
+++ b/src/libcamera/geometry.cpp
@@ -108,6 +108,15 @@ bool operator==(const Rectangle &lhs, const Rectangle &rhs)
*/
/**
+ * \brief Assemble and return a string describing the size
+ * \return A string describing the size
+ */
+const std::string Size::toString() const
+{
+ return std::to_string(width) + "x" + std::to_string(height);
+}
+
+/**
* \brief Compare sizes for equality
* \return True if the two sizes are equal, false otherwise
*/