diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-11-11 12:47:07 +0100 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-12-03 17:47:15 +0100 |
commit | 056a0fe0ab7555055281f80923e12750f52ce080 (patch) | |
tree | cc78631084e8298dca116ede5cdd5f2387f2a9bc /src | |
parent | 9d61c09462e93106954e8c358506add3e719b48b (diff) |
libcamera: internal: Move Matrix class into libcamera namespace
The Matrix class no longer lives inside lipipa. Move it into the
libcamera namespace to account for that.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/matrix.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libcamera/matrix.cpp b/src/libcamera/matrix.cpp index 8346f0d3..55359aa2 100644 --- a/src/libcamera/matrix.cpp +++ b/src/libcamera/matrix.cpp @@ -5,7 +5,7 @@ * Matrix and related operations */ -#include "matrix.h" +#include "libcamera/internal/matrix.h" #include <libcamera/base/log.h> @@ -18,8 +18,6 @@ namespace libcamera { LOG_DEFINE_CATEGORY(Matrix) -namespace ipa { - /** * \class Matrix * \brief Matrix class @@ -144,6 +142,4 @@ bool matrixValidateYaml(const YamlObject &obj, unsigned int size) } #endif /* __DOXYGEN__ */ -} /* namespace ipa */ - } /* namespace libcamera */ |