diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/geometry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libcamera/geometry.h b/include/libcamera/geometry.h index 7f1b29fe..2d364891 100644 --- a/include/libcamera/geometry.h +++ b/include/libcamera/geometry.h @@ -15,8 +15,8 @@ namespace libcamera { struct Rectangle { int x; int y; - unsigned int w; - unsigned int h; + unsigned int width; + unsigned int height; const std::string toString() const; }; |