libcamera: geometry: Rename Rectangle fields
The Rectangle class members that represents the rectangle horizontal and vertical sizes are named 'w' and 'h', in contrast with the Size and SizeRange classes which use 'width' and 'height', resulting in having to look at class definition every time to know which names to use. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
@@ -40,12 +40,12 @@ namespace libcamera {
|
||||
*/
|
||||
|
||||
/**
|
||||
* \var Rectangle::w
|
||||
* \var Rectangle::width
|
||||
* \brief The distance between the left and right sides
|
||||
*/
|
||||
|
||||
/**
|
||||
* \var Rectangle::h
|
||||
* \var Rectangle::height
|
||||
* \brief The distance between the top and bottom sides
|
||||
*/
|
||||
|
||||
@@ -57,7 +57,7 @@ const std::string Rectangle::toString() const
|
||||
{
|
||||
std::stringstream ss;
|
||||
|
||||
ss << "(" << x << "x" << y << ")/" << w << "x" << h;
|
||||
ss << "(" << x << "x" << y << ")/" << width << "x" << height;
|
||||
|
||||
return ss.str();
|
||||
}
|
||||
@@ -69,7 +69,7 @@ const std::string Rectangle::toString() const
|
||||
bool operator==(const Rectangle &lhs, const Rectangle &rhs)
|
||||
{
|
||||
return lhs.x == rhs.x && lhs.y == rhs.y &&
|
||||
lhs.w == rhs.w && lhs.h == rhs.h;
|
||||
lhs.width == rhs.width && lhs.height == rhs.height;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user